From: Alexander Belopolsky Date: Mon, 31 Jan 2011 19:27:55 +0000 (+0000) Subject: Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl. X-Git-Tag: v3.2rc3~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0313560e05b79bc7340f36885d1aef3dce0a362;p=python Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl. --- diff --git a/Lib/struct.py b/Lib/struct.py index dca15e2ad3..9bfc23f8d5 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',