Sha256: 7f7a8effa98bf655b5583966189688ea21f008c9f1510509a85c15b17cfbf2c7
Contents?: true
Size: 715 Bytes
Versions: 30
Compression:
Stored size: 715 Bytes
Contents
from test_support import verify import urllib2 import os # A couple trivial tests try: urllib2.urlopen('bogus url') except ValueError: pass else: verify(0) # XXX Name hacking to get this to work on Windows. fname = os.path.abspath(urllib2.__file__).replace('\\', '/') if fname[1:2] == ":": fname = fname[2:] # And more hacking to get it to work on MacOS. This assumes # urllib.pathname2url works, unfortunately... if os.name == 'mac': fname = '/' + fname.replace(':', '/') elif os.name == 'riscos': import string fname = os.expand(fname) fname = fname.translate(string.maketrans("/.", "./")) file_url = "file://%s" % fname f = urllib2.urlopen(file_url) buf = f.read() f.close()
Version data entries
30 entries across 30 versions & 1 rubygems