diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-01-27 23:51:36 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-01-27 23:51:36 (GMT) |
commit | 5eed340267868c54775b49613b81dff7eb2461bb (patch) | |
tree | ae3582bf22d827b8a8ba6b248cc6d6a4a318b707 | |
parent | 217e571a19c9d643005d8c8d88abab16f88735a2 (diff) | |
download | cpython-5eed340267868c54775b49613b81dff7eb2461bb.zip cpython-5eed340267868c54775b49613b81dff7eb2461bb.tar.gz cpython-5eed340267868c54775b49613b81dff7eb2461bb.tar.bz2 |
Whitespace normalization.
-rw-r--r-- | Lib/pickletools.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/pickletools.py b/Lib/pickletools.py index dec533d..cbc265f 100644 --- 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) |