[Python-checkins] python/dist/src/Lib/test test_support.py, 1.62, 1.62.4.1

loewis at users.sourceforge.net loewis at users.sourceforge.net
Tue Mar 8 16:05:19 CET 2005


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26176/Lib/test

Modified Files:
      Tag: release24-maint
	test_support.py 
Log Message:
Build with --disable-unicode again. Fixes #1158607.


Index: test_support.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_support.py,v
retrieving revision 1.62
retrieving revision 1.62.4.1
diff -u -d -r1.62 -r1.62.4.1
--- test_support.py	18 Jan 2004 20:29:55 -0000	1.62
+++ test_support.py	8 Mar 2005 15:05:15 -0000	1.62.4.1
@@ -144,7 +144,7 @@
             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



More information about the Python-checkins mailing list