[issue11081] from struct import * misses pack_into

2011-01-31 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Committed in revision 88280. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker __

[issue11081] from struct import * misses pack_into

2011-01-31 Thread Georg Brandl
Georg Brandl added the comment: Yes, this can go in. -- assignee: georg.brandl -> belopolsky ___ Python tracker ___ ___ Python-bugs-l

[issue11081] from struct import * misses pack_into

2011-01-31 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- stage: -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue11081] from struct import * misses pack_into

2011-01-31 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I would say if anything can go in after rc2 at all, this should be accepted. George? I ran a few sanity checks with the patch applied: >>> set(struct.__all__) - set(dir(struct)) set() >>> set(dir(struct)) - set(struct.__all__) {'_clearcache', '__all__'

[issue11081] from struct import * misses pack_into

2011-01-31 Thread SilentGhost
New submission from SilentGhost : the following issue was introduced in r81947: >>> from struct import * >>> pack_into Traceback (most recent call last): File "", line 1, in pack_into NameError: name 'pack_into' is not defined struct.__all__ has a duplicate entry for "unpack" and misses