mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Explicitly use UTF-8 as the encoding for the normalization file.
This commit is contained in:
parent
5495957b6c
commit
234a34a564
2 changed files with 4 additions and 4 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue