[Python-checkins] cpython: Issue #16444: disable undecodable characters in test_non_ascii() test until
victor.stinner
python-checkins at python.org
Sat Nov 10 22:31:50 CET 2012
http://hg.python.org/cpython/rev/398f8770bf0d
changeset: 80339:398f8770bf0d
user: Victor Stinner <victor.stinner at gmail.com>
date: Sat Nov 10 22:32:08 2012 +0100
summary:
Issue #16444: disable undecodable characters in test_non_ascii() test until
the FreeBSD issue is fixed
files:
Lib/test/test_cmd_line_script.py | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py
--- a/Lib/test/test_cmd_line_script.py
+++ b/Lib/test/test_cmd_line_script.py
@@ -367,10 +367,11 @@
# Mac OS X denies the creation of a file with an invalid UTF-8 name.
# Windows allows to create a name with an arbitrary bytes name, but
# Python cannot a undecodable bytes argument to a subprocess.
- if (support.TESTFN_UNDECODABLE
- and sys.platform not in ('win32', 'darwin')):
- name = os.fsdecode(support.TESTFN_UNDECODABLE)
- elif support.TESTFN_NONASCII:
+ #if (support.TESTFN_UNDECODABLE
+ #and sys.platform not in ('win32', 'darwin')):
+ # name = os.fsdecode(support.TESTFN_UNDECODABLE)
+ #elif support.TESTFN_NONASCII:
+ if support.TESTFN_NONASCII:
name = support.TESTFN_NONASCII
else:
self.skipTest("need support.TESTFN_NONASCII")
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list