Message121058
| 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. |
|