This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author SilentGhost
Recipients SilentGhost, belopolsky, georg.brandl, mark.dickinson
Date 2011-01-31.17:21:58
SpamBayes Score 3.838596e-13
Marked as misclassified No
Message-id <1296494519.33.0.0318665786587.issue11081@psf.upfronthosting.co.za>
In-reply-to
Content
the following issue was introduced in r81947:

>>> from struct import *
>>> pack_into
Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
    pack_into
NameError: name 'pack_into' is not defined

struct.__all__ has a duplicate entry for "unpack" and misses "pack_into".

Patch is attached, test passes. Seems quite innocent to me, could it make into 3.2, George?

Related: #8973 and #11078
History
Date User Action Args
2011-01-31 17:21:59SilentGhostsetrecipients: + SilentGhost, georg.brandl, mark.dickinson, belopolsky
2011-01-31 17:21:59SilentGhostsetmessageid: <1296494519.33.0.0318665786587.issue11081@psf.upfronthosting.co.za>
2011-01-31 17:21:58SilentGhostlinkissue11081 messages
2011-01-31 17:21:58SilentGhostcreate