From a5dc3db3d162b10b51131113d19ce16244c9fe0e Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Wed, 29 Aug 2007 19:07:40 +0000 Subject: Change string literals to bytes, since they are compared to bytes. --- Lib/pickletools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/pickletools.py b/Lib/pickletools.py index 537afd2..6ec3ac2 100644 --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -503,9 +503,9 @@ def read_decimalnl_short(f): # It's not necessarily true that the result fits in a Python short int: # the pickle may have been written on a 64-bit box. There's also a hack # for True and False here. - if s == "00": + if s == b"00": return False - elif s == "01": + elif s == b"01": return True try: -- cgit v0.12