mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fixed odd whitespace after "if", which I believe I introduced long ago.
This commit is contained in:
parent
8fda7bc48d
commit
d95c2df3a9
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue