Kaydet (Commit) d95c2df3 authored tarafından Tim Peters's avatar Tim Peters

Fixed odd whitespace after "if", which I believe I introduced long ago.

üst 8fda7bc4
...@@ -376,7 +376,7 @@ class Pickler: ...@@ -376,7 +376,7 @@ class Pickler:
return return
# Next check for 4-byte signed ints: # Next check for 4-byte signed ints:
high_bits = object >> 31 # note that Python shift sign-extends 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 # All high bits are copies of bit 2**31, so the value
# fits in a 4-byte signed int. # fits in a 4-byte signed int.
self.write(BININT + pack("<i", object)) self.write(BININT + pack("<i", object))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment