mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Trivial tests of urllib2 for recent SF bug
This commit is contained in:
parent
c116b82b77
commit
e3e61049a5
2 changed files with 18 additions and 0 deletions
1
Lib/test/output/test_urllib2
Normal file
1
Lib/test/output/test_urllib2
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
test_urllib2
|
||||||
17
Lib/test/test_urllib2.py
Normal file
17
Lib/test/test_urllib2.py
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
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()
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue