Issue #17804: New function `struct.iter_unpack` allows for streaming struct unpacking.

This commit is contained in:
Antoine Pitrou 2013-04-27 00:20:04 +02:00
parent 3da670749a
commit 9f14681959
5 changed files with 262 additions and 1 deletions

View file

@ -1,6 +1,7 @@
__all__ = [
# Functions
'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
'iter_unpack',
# Classes
'Struct',