diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-03-08 15:03:08 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-03-08 15:03:08 (GMT) |
commit | e2713becd8cb0c3b2db4d33832dd57a1d619f0f3 (patch) | |
tree | c46d31f73c95c9a969b6704719dac3e83eb435f1 /Lib/test | |
parent | b60ae9960182b8eecb26da12171917ee5a6cc1fc (diff) | |
download | cpython-e2713becd8cb0c3b2db4d33832dd57a1d619f0f3.zip cpython-e2713becd8cb0c3b2db4d33832dd57a1d619f0f3.tar.gz cpython-e2713becd8cb0c3b2db4d33832dd57a1d619f0f3.tar.bz2 |
Build with --disable-unicode again. Fixes #1158607.
Will backport to 2.4.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 485e9e0..a296caf 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -144,7 +144,7 @@ else: TESTFN_UNICODE_UNENCODEABLE = None else: # Japanese characters (I think - from bug 846133) - TESTFN_UNICODE_UNENCODEABLE = u"@test-\u5171\u6709\u3055\u308c\u308b" + TESTFN_UNICODE_UNENCODEABLE = eval('u"@test-\u5171\u6709\u3055\u308c\u308b"') try: # XXX - Note - should be using TESTFN_ENCODING here - but for # Windows, "mbcs" currently always operates as if in |