[Python-checkins] cpython (2.7): Fixed yet one syntax error in test_xpickle in Python 2.5.

serhiy.storchaka python-checkins at python.org
Sun Nov 29 13:18:47 EST 2015


https://hg.python.org/cpython/rev/436e58ae3bab
changeset:   99390:436e58ae3bab
branch:      2.7
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sun Nov 29 20:18:27 2015 +0200
summary:
  Fixed yet one syntax error in test_xpickle in Python 2.5.

files:
  Lib/test/pickletester.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py
--- a/Lib/test/pickletester.py
+++ b/Lib/test/pickletester.py
@@ -746,7 +746,7 @@
             # 'P',                        # PERSID
             # 'Pabc',
             'S',                        # STRING
-            b"S'abc'",
+            "S'abc'",
             'T',                        # BINSTRING
             'T\x03\x00\x00',
             'T\x03\x00\x00\x00',

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list