From: Tim Peters Date: Mon, 27 Jan 2003 23:51:36 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.3c1~2274 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5eed340267868c54775b49613b81dff7eb2461bb;p=python Whitespace normalization. --- diff --git a/Lib/pickletools.py b/Lib/pickletools.py index dec533d492..cbc265fc80 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)