# open, os.open, os.stat. os.listdir, os.rename, os.remove, os.mkdir, os.chdir, os.rmdir
import sys, os, unittest
from test import test_support
-## There's no obvious reason to skip these tests on POSIX systems
-# if not os.path.supports_unicode_filenames:
-# raise unittest.SkipTest, "test works only on NT+"
filenames = [
'abc',
except OSError:
pass
for name in self.files:
- f = open(name, 'w')
+ try:
+ f = open(name, 'w')
+ except UnicodeEncodeError:
+ if not os.path.supports_unicode_filenames:
+ raise unittest.SkipTest("test works only on NT+, and with "
+ "pseudo-Unicode filesystems")
f.write((name+'\n').encode("utf-8"))
f.close()
os.stat(name)
Tests
-----
-- Issue #767675: enable test_pep277 on all platforms.
+- Issue #767675: enable test_pep277 on POSIX platforms with Unicode-friendly
+ filesystem encoding.
- Issue #6292: for the moment at least, the test suite runs cleanly if python
is run with the -OO flag. Tests requiring docstrings are skipped.