]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
This has never worked on Windows. Now it does. If it breaks on Unix now,
authorTim Peters <tim.peters@gmail.com>
Mon, 16 Jul 2001 20:49:49 +0000 (20:49 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 16 Jul 2001 20:49:49 +0000 (20:49 +0000)
great, it's your turn to watch it fail for months <0.9 wink>.

Lib/test/test_urllib2.py

index 263c0d19176ce3818287b9dd050275890b32f0ae..80356f84d77389e7601ce9953b20094831faa917 100644 (file)
@@ -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()