summaryrefslogtreecommitdiff
path: root/Lib/test/test_urllib2.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-07-16 20:49:49 +0000
committerTim Peters <tim.peters@gmail.com>2001-07-16 20:49:49 +0000
commit0a90dfa20b76a8fa30643f977832a38a01bd7e84 (patch)
tree43958b7b413990eae64c7f3bcfe0c70b5cbeb056 /Lib/test/test_urllib2.py
parentd25f3077cdf3ade0943f095fccdf627fe06d815d (diff)
downloadcpython-0a90dfa20b76a8fa30643f977832a38a01bd7e84.tar.gz
This has never worked on Windows. Now it does. If it breaks on Unix now,
great, it's your turn to watch it fail for months <0.9 wink>.
Diffstat (limited to 'Lib/test/test_urllib2.py')
-rw-r--r--Lib/test/test_urllib2.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py
index 263c0d1917..80356f84d7 100644
--- a/Lib/test/test_urllib2.py
+++ b/Lib/test/test_urllib2.py
@@ -1,5 +1,6 @@
from test_support import verify
import urllib2
+import os
# A couple trivial tests
@@ -10,7 +11,12 @@ except ValueError:
else:
verify(0)
-file_url = "file://%s" % urllib2.__file__
+# XXX Name hacking to get this to work on Windows.
+fname = os.path.abspath(urllib2.__file__).replace('\\', '/')
+if fname[1:2] == ":":
+ fname = fname[2:]
+file_url = "file://%s" % fname
f = urllib2.urlopen(file_url)
+
buf = f.read()
f.close()