[Python-checkins] r78606 - python/trunk/Lib/test/test_pep277.py

florent.xicluna python-checkins at python.org
Wed Mar 3 00:56:39 CET 2010


Author: florent.xicluna
Date: Wed Mar  3 00:56:38 2010
New Revision: 78606

Log:
Fix wording.


Modified:
   python/trunk/Lib/test/test_pep277.py

Modified: python/trunk/Lib/test/test_pep277.py
==============================================================================
--- python/trunk/Lib/test/test_pep277.py	(original)
+++ python/trunk/Lib/test/test_pep277.py	Wed Mar  3 00:56:38 2010
@@ -38,8 +38,8 @@
                 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")
+                    raise unittest.SkipTest("only NT+ and systems with Unicode"
+                                            "-friendly filesystem encoding")
             f.write((name+'\n').encode("utf-8"))
             f.close()
             os.stat(name)


More information about the Python-checkins mailing list