[issue5637] 2to3 does not convert urllib.urlopen to urllib.request.urlopen

2009-04-01 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r70991. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pytho

[issue5637] 2to3 does not convert urllib.urlopen to urllib.request.urlopen

2009-04-01 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list maili

[issue5637] 2to3 does not convert urllib.urlopen to urllib.request.urlopen

2009-03-31 Thread Senthil
New submission from Senthil : In Py2x, have this code: import urllib s = urllib.urlopen('http://www.python.org') print s Run 2to3, on this, refactoring works only on import urllib and print statements. @@ -1,3 +1,3 @@ -import urllib +import urllib.request, urllib.parse, urllib.error s = urlli