[Python-checkins] python/dist/src/Lib pickle.py,1.98,1.99

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 27 Jan 2003 19:41:56 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv19906/Lib

Modified Files:
	pickle.py 
Log Message:
Fixed odd whitespace after "if", which I believe I introduced long ago.


Index: pickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pickle.py,v
retrieving revision 1.98
retrieving revision 1.99
diff -C2 -d -r1.98 -r1.99
*** pickle.py	28 Jan 2003 03:40:52 -0000	1.98
--- pickle.py	28 Jan 2003 03:41:54 -0000	1.99
***************
*** 377,381 ****
              # 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:
                  # All high bits are copies of bit 2**31, so the value
                  # fits in a 4-byte signed int.
--- 377,381 ----
              # 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:
                  # All high bits are copies of bit 2**31, so the value
                  # fits in a 4-byte signed int.