commit | f0313560e05b79bc7340f36885d1aef3dce0a362 | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Mon Jan 31 19:27:55 2011 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Mon Jan 31 19:27:55 2011 +0000 |
tree | b3b4ef30a3e614ed4db1439fb8db2cdc2117139f | |
parent | 6b449baa83f0441c1f2a923fd85e153a2d5da363 [diff] [blame] |
Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl.
diff --git a/Lib/struct.py b/Lib/struct.py index dca15e2..9bfc23f 100644 --- a/Lib/struct.py +++ b/Lib/struct.py
@@ -1,6 +1,6 @@ __all__ = [ # Functions - 'calcsize', 'pack', 'unpack', 'unpack', 'unpack_from', + 'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from', # Classes 'Struct',