summaryrefslogtreecommitdiffstats
path: root/Lib/pickle.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-01-28 03:41:54 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-01-28 03:41:54 (GMT)
commitd95c2df3a92dcabc5ffad48e15962fe9ff93a4d0 (patch)
tree25fbfc0a7255ecf277b977d5af53eb43356fb1e8 /Lib/pickle.py
parent8fda7bc48d7f58983ff54bf11367ed936767cd72 (diff)
downloadcpython-d95c2df3a92dcabc5ffad48e15962fe9ff93a4d0.zip
cpython-d95c2df3a92dcabc5ffad48e15962fe9ff93a4d0.tar.gz
cpython-d95c2df3a92dcabc5ffad48e15962fe9ff93a4d0.tar.bz2
Fixed odd whitespace after "if", which I believe I introduced long ago.
Diffstat (limited to 'Lib/pickle.py')
-rw-r--r--Lib/pickle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pickle.py b/Lib/pickle.py
index ab5fcb6..cfad6ed 100644
--- a/Lib/pickle.py
+++ b/Lib/pickle.py
@@ -376,7 +376,7 @@ class Pickler:
return
# Next check for 4-byte signed ints:
high_bits = object >> 31 # note that Python shift sign-extends
- if high_bits == 0 or high_bits == -1:
+ if high_bits == 0 or high_bits == -1:
# All high bits are copies of bit 2**31, so the value
# fits in a 4-byte signed int.
self.write(BININT + pack("<i", object))