diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-07-16 20:49:49 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-07-16 20:49:49 (GMT) |
commit | 861adac23e71f751fc01b8a649c566382175daac (patch) | |
tree | 3041fdf62cc1f694345987b76f104a32d22e3c54 /Lib | |
parent | 95400a28e46f8504866df4e7c26b2e1a9da751ce (diff) | |
download | cpython-861adac23e71f751fc01b8a649c566382175daac.zip cpython-861adac23e71f751fc01b8a649c566382175daac.tar.gz cpython-861adac23e71f751fc01b8a649c566382175daac.tar.bz2 |
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')
-rw-r--r-- | Lib/test/test_urllib2.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index 263c0d1..80356f8 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() |