mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			720 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			720 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from test.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()
 |