Commit 861adac2 authored by Tim Peters's avatar Tim Peters

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>.
parent 95400a28
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()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment