diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-01-03 00:56:38 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-01-03 00:56:38 (GMT) |
commit | 269b3ce40065afa3328953ec42657184da22f96b (patch) | |
tree | 006f9ea7378ac0e18474d13843b4a1138f7100d7 /Lib/test/support.py | |
parent | 7ae320d66787e2b4dec293350ec379d5d04fe81b (diff) | |
parent | 0af71aae2d914e0833edfc344b493bbb74292645 (diff) | |
download | cpython-269b3ce40065afa3328953ec42657184da22f96b.zip cpython-269b3ce40065afa3328953ec42657184da22f96b.tar.gz cpython-269b3ce40065afa3328953ec42657184da22f96b.tar.bz2 |
(Merge 3.2) Issue #16218, #16414, #16444: Backport FS_NONASCII,
TESTFN_UNDECODABLE, TESTFN_NONASCII of test.support from Python 3.4. Backport
tests on non-ASCII paths.
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r-- | Lib/test/support.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index d0a37ea..1e3aef0 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -710,6 +710,9 @@ for name in ( b'\xae\xd5' # undecodable from UTF-8 (UNIX and Mac OS X) b'\xed\xb2\x80', b'\xed\xb4\x80', + # undecodable from shift_jis, cp869, cp874, cp932, cp1250, cp1251, cp1252, + # cp1253, cp1254, cp1255, cp1257, cp1258 + b'\x81\x98', ): try: name.decode(TESTFN_ENCODING) |