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 srid
Recipients srid
Date 2009-07-16.20:59:45
SpamBayes Score 0.00025336188
Marked as misclassified No
Message-id <1247777987.6.0.0614003313413.issue6496@psf.upfronthosting.co.za>
In-reply-to
Content
Both pathname2url and url2pathname are in the urllib.request module, 
but 2to3 thinks they are in urllib.parse module.

sridharr@double:~/tmp/eric1$ cat foo.py 
from urllib import pathname2url, url2pathname

sridharr@double:~/tmp/eric1$ /opt/ActivePython-3.1/bin/2to3 foo.py 
RefactoringTool: Skipping implicit fixer: buffer
RefactoringTool: Skipping implicit fixer: idioms
RefactoringTool: Skipping implicit fixer: set_literal
RefactoringTool: Skipping implicit fixer: ws_comma
--- foo.py (original)
+++ foo.py (refactored)
@@ -1,2 +1,2 @@
-from urllib import pathname2url, url2pathname
+from urllib.parse import pathname2url, url2pathname
 
RefactoringTool: Files that need to be modified:
RefactoringTool: foo.py
sridharr@double:~/tmp/eric1$
History
Date User Action Args
2009-07-16 20:59:47sridsetrecipients: + srid
2009-07-16 20:59:47sridsetmessageid: <1247777987.6.0.0614003313413.issue6496@psf.upfronthosting.co.za>
2009-07-16 20:59:45sridlinkissue6496 messages
2009-07-16 20:59:45sridcreate