Message85151
In 2.7 code have:
import Cookie
c = Cookie.Cookie('abc')
2to3 would do:
c = http.cookies.Cookie('abc')
This is wrong as there is no class as Cookie in http.cookies. It should
translated to be http.cookies.SimpleCookie. |
|
| Date |
User |
Action |
Args |
| 2009-04-02 03:22:48 | orsenthil | set | recipients:
+ orsenthil, benjamin.peterson |
| 2009-04-02 03:22:48 | orsenthil | set | messageid: <1238642568.2.0.229238012255.issue5664@psf.upfronthosting.co.za> |
| 2009-04-02 03:22:46 | orsenthil | link | issue5664 messages |
| 2009-04-02 03:22:46 | orsenthil | create | |
|