summaryrefslogtreecommitdiffstats
path: root/Lib/struct.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-05-23 21:54:23 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-05-23 21:54:23 (GMT)
commit211219af4fd4644c7b877e4f2c374d08fdefb6bf (patch)
tree6f9511d53edf2262255f61af2573bc3b58c42f44 /Lib/struct.py
parent1bddfb84ee8e5a67af9a5001ab845c22c29cd491 (diff)
downloadcpython-211219af4fd4644c7b877e4f2c374d08fdefb6bf.zip
cpython-211219af4fd4644c7b877e4f2c374d08fdefb6bf.tar.gz
cpython-211219af4fd4644c7b877e4f2c374d08fdefb6bf.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/struct.py')
-rw-r--r--Lib/struct.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/struct.py b/Lib/struct.py
index aa7af71..ee5ddc2 100644
--- a/Lib/struct.py
+++ b/Lib/struct.py
@@ -50,7 +50,7 @@ def calcsize(fmt):
except KeyError:
o = _compile(fmt)
return o.size
-
+
def pack(fmt, *args):
"""
Return string containing values v1, v2, ... packed according to fmt.
@@ -73,4 +73,3 @@ def unpack(fmt, s):
except KeyError:
o = _compile(fmt)
return o.unpack(s)
-