From f0313560e05b79bc7340f36885d1aef3dce0a362 Mon Sep 17 00:00:00 2001 From: Alexander Belopolsky Date: Mon, 31 Jan 2011 19:27:55 +0000 Subject: Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl. --- Lib/struct.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/struct.py') 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', -- cgit v1.2.1