diff options
author | Guido van Rossum <guido@python.org> | 2007-05-18 00:51:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-05-18 00:51:22 (GMT) |
commit | 68937b4cbcc3e88d4207e6391a311f9b7d067b71 (patch) | |
tree | b5fffb2ee6c7f523ced6f49f9ab35bc22413cbcf /Lib/urlparse.py | |
parent | 7ac9d4020100b99b17eeddf65bafa8e87f9f293a (diff) | |
download | cpython-68937b4cbcc3e88d4207e6391a311f9b7d067b71.zip cpython-68937b4cbcc3e88d4207e6391a311f9b7d067b71.tar.gz cpython-68937b4cbcc3e88d4207e6391a311f9b7d067b71.tar.bz2 |
Change some uses of cStringIO.StringIO to io.StringIO.
This is undoubtedly insufficient and in some cases just as broken as before.
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r-- | Lib/urlparse.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 8cc7a97..e5de53a 100644 --- a/Lib/urlparse.py +++ b/Lib/urlparse.py @@ -350,10 +350,7 @@ def test(): else: fp = open(fn) else: - try: - from cStringIO import StringIO - except ImportError: - from StringIO import StringIO + from io import StringIO fp = StringIO(test_input) while 1: line = fp.readline() |