From: Florent Xicluna Date: Tue, 2 Mar 2010 23:56:38 +0000 (+0000) Subject: Fix wording. X-Git-Tag: v2.7a4~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9e220be19d5f1ba1729f8713aa9162b552c4b0c8;p=thirdparty%2FPython%2Fcpython.git Fix wording. --- diff --git a/Lib/test/test_pep277.py b/Lib/test/test_pep277.py index 9a4c3bba3509..1b4ae8c3a652 100644 --- a/Lib/test/test_pep277.py +++ b/Lib/test/test_pep277.py @@ -38,8 +38,8 @@ class UnicodeFileTests(unittest.TestCase): 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)