From: Antoine Pitrou Date: Fri, 11 Nov 2011 12:31:59 +0000 (+0100) Subject: Enable commented out test X-Git-Tag: v3.3.0a1~870 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dffab192182f01bd0b21ac7b0bde0227214fd091;p=thirdparty%2FPython%2Fcpython.git Enable commented out test --- diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index f79b2f0edaf8..6335a129bdaa 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -1403,7 +1403,7 @@ class UnicodeTest(string_tests.CommonTest, # Roundtrip safety for non-BMP (just a few chars) u = '\U00010001\U00020002\U00030003\U00040004\U00050005' for encoding in ('utf-8', 'utf-16', 'utf-16-le', 'utf-16-be', - #'raw_unicode_escape', + 'raw_unicode_escape', 'unicode_escape', 'unicode_internal'): self.assertEqual(str(u.encode(encoding),encoding), u)