Kaydet (Commit) 5c1808a1 authored tarafından Victor Stinner's avatar Victor Stinner

test_pep277: display the filename as ascii on failure

üst 114b724a
......@@ -132,7 +132,10 @@ class UnicodeFileTests(unittest.TestCase):
for name in others:
if sys.platform == 'darwin' and normalize('NFD', name) in files:
# Mac OS X decomposes Unicode names. See comment above.
os.stat(name)
try:
os.stat(name)
except OSError as err:
raise AssertionError("File %a doesn't exist" % name)
continue
self._apply_failure(open, name, IOError)
self._apply_failure(os.stat, name, OSError)
......
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