From: Benjamin Peterson Date: Sat, 27 Dec 2008 16:58:50 +0000 (+0000) Subject: fix syntax X-Git-Tag: v3.1a1~657 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d148630e72737ea9e0fd27b971e06910e529f593;p=python fix syntax --- diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index ad9230c23a..887b51207f 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -484,8 +484,8 @@ class AbstractPickleTests(unittest.TestCase): self.assertRaises(ValueError, self.loads, buf) def test_unicode(self): - endcases = [u'', u'<\\u>', u'<\\\u1234>', u'<\n>', - u'<\\>', u'<\\\U00012345>'] + endcases = ['', '<\\u>', '<\\\u1234>', '<\n>', + '<\\>', '<\\\U00012345>'] for proto in protocols: for u in endcases: p = self.dumps(u, proto)