Whitespace normalization.

This commit is contained in:
Tim Peters 2006-05-23 21:54:23 +00:00
parent 1bddfb84ee
commit 211219af4f
4 changed files with 1019 additions and 1020 deletions

View file

@ -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)