diff options
Diffstat (limited to 'Lib/struct.py')
-rw-r--r-- | Lib/struct.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/struct.py b/Lib/struct.py index aa7af71b7a..ee5ddc265c 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) - |