[Python-checkins] r67943 - python/trunk/Lib/test/pickletester.py

alexandre.vassalotti python-checkins at python.org
Sat Dec 27 11:02:59 CET 2008


Author: alexandre.vassalotti
Date: Sat Dec 27 11:02:59 2008
New Revision: 67943

Log:
Fix bogus unicode tests in pickletester.


Modified:
   python/trunk/Lib/test/pickletester.py

Modified: python/trunk/Lib/test/pickletester.py
==============================================================================
--- python/trunk/Lib/test/pickletester.py	(original)
+++ python/trunk/Lib/test/pickletester.py	Sat Dec 27 11:02:59 2008
@@ -480,8 +480,8 @@
 
     if have_unicode:
         def test_unicode(self):
-            endcases = [u'', u'<\\u>', u'<\\\\u1234>', u'<\n>',
-                        u'<\\>', u'<\\\\U00012345>']
+            endcases = [u'', u'<\\u>', u'<\\\u1234>', u'<\n>',
+                        u'<\\>', u'<\\\U00012345>']
             for proto in protocols:
                 for u in endcases:
                     p = self.dumps(u, proto)


More information about the Python-checkins mailing list