diff options
author | George Yoshida <dynkin@gmail.com> | 2006-07-30 16:41:30 (GMT) |
---|---|---|
committer | George Yoshida <dynkin@gmail.com> | 2006-07-30 16:41:30 (GMT) |
commit | 499b0e638bf0ede8239fe57ed0b2eb76bc04fa49 (patch) | |
tree | ee19259e3a018ea7b1708c02df0d119a71713f70 /Lib | |
parent | c7605270b422ae72e135263604d5136406169ec4 (diff) | |
download | cpython-499b0e638bf0ede8239fe57ed0b2eb76bc04fa49.zip cpython-499b0e638bf0ede8239fe57ed0b2eb76bc04fa49.tar.gz cpython-499b0e638bf0ede8239fe57ed0b2eb76bc04fa49.tar.bz2 |
Typo fix
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/struct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/struct.py b/Lib/struct.py index 9113e71..07c21bf 100644 --- a/Lib/struct.py +++ b/Lib/struct.py @@ -64,7 +64,7 @@ def pack(fmt, *args): def pack_into(fmt, buf, offset, *args): """ - Pack the values v2, v2, ... according to fmt, write + Pack the values v1, v2, ... according to fmt, write the packed bytes into the writable buffer buf starting at offset. See struct.__doc__ for more on format strings. """ |