[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: https://ma

[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 : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[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 ___ _

[issue5664] 2to3 wont convert Cookie.Cookie properly

2010-01-31 Thread Meador Inge
Meador Inge 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 ___

[issue5664] 2to3 wont convert Cookie.Cookie properly

2009-04-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2009/4/1 Senthil : > > New submission from Senthil : > > 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

[issue5664] 2to3 wont convert Cookie.Cookie properly

2009-04-01 Thread Senthil
New submission from Senthil : 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: benjamin.peterson compon