test_pep277: display the filename as ascii on failure

This commit is contained in:
Victor Stinner 2010-08-19 17:35:00 +00:00
parent 114b724a4b
commit 5c1808a1a8
1 changed files with 4 additions and 1 deletions

View File

@ -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)