Commit e3e61049 authored by Jeremy Hylton's avatar Jeremy Hylton

Trivial tests of urllib2 for recent SF bug

parent c116b82b
from test_support import verify
import urllib2
# A couple trivial tests
try:
urllib2.urlopen('bogus url')
except ValueError:
pass
else:
verify(0)
file_url = "file://%s" % urllib2.__file__
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