projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
217e571
)
Whitespace normalization.
author
Tim Peters
<tim.peters@gmail.com>
Mon, 27 Jan 2003 23:51:36 +0000
(23:51 +0000)
committer
Tim Peters
<tim.peters@gmail.com>
Mon, 27 Jan 2003 23:51:36 +0000
(23:51 +0000)
Lib/pickletools.py
patch
|
blob
|
history
diff --git
a/Lib/pickletools.py
b/Lib/pickletools.py
index dec533d4928198d17a7dd32ab4cbdcf120877f7f..cbc265fc8049ead47903501efead3cfa4faff5f0 100644
(file)
--- a/
Lib/pickletools.py
+++ b/
Lib/pickletools.py
@@
-615,7
+615,7
@@
def read_long1(f):
-256L
>>> read_long1(StringIO.StringIO("\x02\x00\x80"))
-32768L
- >>>
+ >>>
"""
n = read_uint1(f)
@@
-645,7
+645,7
@@
def read_long2(f):
-256L
>>> read_long2(StringIO.StringIO("\x02\x00\x00\x80"))
-32768L
- >>>
+ >>>
"""
n = read_uint2(f)
@@
-675,7
+675,7
@@
def read_long4(f):
-256L
>>> read_long4(StringIO.StringIO("\x02\x00\x00\x00\x00\x80"))
-32768L
- >>>
+ >>>
"""
n = read_int4(f)