Commit 07728e9b authored by Antoine Pitrou's avatar Antoine Pitrou

Merged revisions 76037 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r76037 | antoine.pitrou | 2009-11-01 23:02:03 +0100 (dim., 01 nov. 2009) | 3 lines

  Use a custom timeout in test_support.open_urlresource.
........
parent 1ccb66a5
...@@ -378,7 +378,7 @@ def check_syntax_error(testcase, statement): ...@@ -378,7 +378,7 @@ def check_syntax_error(testcase, statement):
testcase.fail('Missing SyntaxError: "%s"' % statement) testcase.fail('Missing SyntaxError: "%s"' % statement)
def open_urlresource(url): def open_urlresource(url):
import urllib, urlparse import urlparse, urllib2
requires('urlfetch') requires('urlfetch')
filename = urlparse.urlparse(url)[2].split('/')[-1] # '/': it's URL! filename = urlparse.urlparse(url)[2].split('/')[-1] # '/': it's URL!
...@@ -389,8 +389,16 @@ def open_urlresource(url): ...@@ -389,8 +389,16 @@ def open_urlresource(url):
return open(fn) return open(fn)
print >> get_original_stdout(), '\tfetching %s ...' % url print >> get_original_stdout(), '\tfetching %s ...' % url
fn, _ = urllib.urlretrieve(url, filename) f = urllib2.urlopen(url, timeout=15)
return open(fn) try:
with open(filename, "wb") as out:
s = f.read()
while s:
out.write(s)
s = f.read()
finally:
f.close()
return open(filename)
class WarningsRecorder(object): class WarningsRecorder(object):
......
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