summaryrefslogtreecommitdiff
path: root/Lib/test/test_support.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2007-08-30 20:58:02 +0000
committerMartin v. Löwis <martin@v.loewis.de>2007-08-30 20:58:02 +0000
commit3a3805f41eaa74271d7490199cad03f9262f5b68 (patch)
tree7821f00904ebabe8883ccb5416ed2f89f212931b /Lib/test/test_support.py
parent4b6b6eebf71c88064357e78193c942396b0b5a18 (diff)
downloadcpython-3a3805f41eaa74271d7490199cad03f9262f5b68.tar.gz
Explicitly use UTF-8 as the encoding for the normalization file.
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index 99f57e6071..637043d846 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -244,7 +244,7 @@ def check_syntax_error(testcase, statement):
else:
testcase.fail('Missing SyntaxError: "%s"' % statement)
-def open_urlresource(url):
+def open_urlresource(url, *args, **kw):
import urllib, urlparse
requires('urlfetch')
@@ -253,11 +253,11 @@ def open_urlresource(url):
for path in [os.path.curdir, os.path.pardir]:
fn = os.path.join(path, filename)
if os.path.exists(fn):
- return open(fn)
+ return open(fn, *args, **kw)
print('\tfetching %s ...' % url, file=get_original_stdout())
fn, _ = urllib.urlretrieve(url, filename)
- return open(fn)
+ return open(fn, *args, **kw)
class WarningMessage(object):