This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author orsenthil
Recipients benjamin.peterson, orsenthil
Date 2009-04-02.03:22:46
SpamBayes Score 0.00949517
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
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.
History
Date User Action Args
2009-04-02 03:22:48orsenthilsetrecipients: + orsenthil, benjamin.peterson
2009-04-02 03:22:48orsenthilsetmessageid: <[email protected]>
2009-04-02 03:22:46orsenthillinkissue5664 messages
2009-04-02 03:22:46orsenthilcreate