summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-05-24 20:29:44 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-05-24 20:29:44 (GMT)
commitf47b1cd839d9fbf58d51cf5f934d8d18e02cb356 (patch)
treec52995bf1ca3da77c75b4bcf29332492c87eb097 /Lib
parentbeaec0c3a18bb38a3d35e3a2abfc5bfeae63485d (diff)
downloadcpython-f47b1cd839d9fbf58d51cf5f934d8d18e02cb356.zip
cpython-f47b1cd839d9fbf58d51cf5f934d8d18e02cb356.tar.gz
cpython-f47b1cd839d9fbf58d51cf5f934d8d18e02cb356.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/struct.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/struct.py b/Lib/struct.py
index 648e39c..b4f56bb 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)