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 loewis
Recipients benjamin.peterson, eric.araujo, hfuru, loewis, vstinner
Date 2010-11-12.19:16:55
SpamBayes Score 2.1003818e-06
Marked as misclassified No
Message-id <1289589416.97.0.797537733451.issue10070@psf.upfronthosting.co.za>
In-reply-to
Content
I don't understand the example, either. If I run 2to3 on it, I get, as the only change

 if sys.version_info[0] < 3:             # Python 2
-    from urllib           import quote, unquote
-    from urlparse         import urlparse, urlunparse
-    from BaseHTTPServer   import HTTPServer
-    from SimpleHTTPServer import SimpleHTTPRequestHandler
+    from urllib.parse import quote, unquote
+    from urllib.parse         import urlparse, urlunparse
+    from http.server   import HTTPServer
+    from http.server import SimpleHTTPRequestHandler
     def str2data(s, is_nonascii=re.compile("[^\0-\x7F]").search):

As this code is in a Python 2.x block: why does this change cause problems to you? You are supposed to run the 2to3 result in Python 3, and this conversion result will run correctly in Python 3.
History
Date User Action Args
2010-11-12 19:16:57loewissetrecipients: + loewis, hfuru, vstinner, benjamin.peterson, eric.araujo
2010-11-12 19:16:56loewissetmessageid: <1289589416.97.0.797537733451.issue10070@psf.upfronthosting.co.za>
2010-11-12 19:16:55loewislinkissue10070 messages
2010-11-12 19:16:55loewiscreate