summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib2.py
blob: 263c0d19176ce3818287b9dd050275890b32f0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()