summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-03-02 23:56:38 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-03-02 23:56:38 (GMT)
commit9e220be19d5f1ba1729f8713aa9162b552c4b0c8 (patch)
tree664c08ec7d97ec9256f2cad67b896c8db1f9155f /Lib/test
parent842b95b0303bff887862e70cac7fc0e3cb4b32ed (diff)
downloadcpython-9e220be19d5f1ba1729f8713aa9162b552c4b0c8.zip
cpython-9e220be19d5f1ba1729f8713aa9162b552c4b0c8.tar.gz
cpython-9e220be19d5f1ba1729f8713aa9162b552c4b0c8.tar.bz2
Fix wording.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_pep277.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pep277.py b/Lib/test/test_pep277.py
index 9a4c3bb..1b4ae8c 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)