[Python-checkins] r88280 - python/branches/py3k/Lib/struct.py

alexander.belopolsky python-checkins at python.org
Mon Jan 31 20:27:55 CET 2011


Author: alexander.belopolsky
Date: Mon Jan 31 20:27:55 2011
New Revision: 88280

Log:
Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl.



Modified:
   python/branches/py3k/Lib/struct.py

Modified: python/branches/py3k/Lib/struct.py
==============================================================================
--- python/branches/py3k/Lib/struct.py	(original)
+++ python/branches/py3k/Lib/struct.py	Mon Jan 31 20:27:55 2011
@@ -1,6 +1,6 @@
 __all__ = [
     # Functions
-    'calcsize', 'pack', 'unpack', 'unpack', 'unpack_from',
+    'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
 
     # Classes
     'Struct',


More information about the Python-checkins mailing list