From: Tim Peters Date: Wed, 24 May 2006 20:29:44 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.5b1~552 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f47b1cd839d9fbf58d51cf5f934d8d18e02cb356;p=python Whitespace normalization. --- diff --git a/Lib/struct.py b/Lib/struct.py index 648e39c2d7..b4f56bbbd1 100644 --- a/Lib/struct.py +++ b/Lib/struct.py @@ -73,7 +73,7 @@ def unpack(fmt, s): except KeyError: o = _compile(fmt) return o.unpack(s) - + def unpack_from(fmt, buf, offset=0): """ Unpack the buffer, containing packed C structure data, according to @@ -84,4 +84,4 @@ def unpack_from(fmt, buf, offset=0): o = _cache[fmt] except KeyError: o = _compile(fmt) - return o.unpack_from(buf, offset) \ No newline at end of file + return o.unpack_from(buf, offset)