[issue5664] 2to3 wont convert Cookie.Cookie properly

2021-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed superseder: -> Close 2to3 issues and list them here ___ Python tracker

[issue5664] 2to3 wont convert Cookie.Cookie properly

2019-08-14 Thread Aldwin Pollefeyt
Change by Aldwin Pollefeyt : -- nosy: +aldwinaldwin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5664] 2to3 wont convert Cookie.Cookie properly

2019-08-14 Thread Aldwin Pollefeyt
Change by Aldwin Pollefeyt : -- keywords: +patch pull_requests: +14990 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15268 ___ Python tracker ___

[issue5664] 2to3 wont convert Cookie.Cookie properly

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- nosy: -BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5664 ___ ___

[issue5664] 2to3 wont convert Cookie.Cookie properly

2013-05-27 Thread Senthil Kumaran
Senthil Kumaran added the comment: Not actually, It is still translating to http.cookies.Cookie - which does not exist. $ ./cpythonvenv/bin/2to3-3.4 bug-fixes/test1.py RefactoringTool: Refactored bug-fixes/test1.py --- bug-fixes/test1.py (original) +++ bug-fixes/test1.py (refactored) @@ -1,2

[issue5664] 2to3 wont convert Cookie.Cookie properly

2013-05-25 Thread Mark Lawrence
Mark Lawrence added the comment: I'm assuming msg98615 is correct so this can be closed. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5664 ___

[issue5664] 2to3 wont convert Cookie.Cookie properly

2010-01-31 Thread Meador Inge
Meador Inge mead...@gmail.com added the comment: There is already a fixer for this in 'Lib/lib2to3/fixes/fix_imports.py'. It was merged to the trunk in r64286. -- nosy: +minge ___ Python tracker rep...@bugs.python.org

[issue5664] 2to3 wont convert Cookie.Cookie properly

2009-04-02 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: 2009/4/1 Senthil rep...@bugs.python.org: New submission from Senthil orsent...@gmail.com: 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

[issue5664] 2to3 wont convert Cookie.Cookie properly

2009-04-01 Thread Senthil
New submission from Senthil orsent...@gmail.com: 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. -- assignee: