From 9f146819598013046dfb4d24ef4f2a748e6c5930 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sat, 27 Apr 2013 00:20:04 +0200 Subject: Issue #17804: New function ``struct.iter_unpack`` allows for streaming struct unpacking. --- Lib/struct.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/struct.py') diff --git a/Lib/struct.py b/Lib/struct.py index 9bfc23f8d5..d6bba58863 100644 --- a/Lib/struct.py +++ b/Lib/struct.py @@ -1,6 +1,7 @@ __all__ = [ # Functions 'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from', + 'iter_unpack', # Classes 'Struct', -- cgit v1.2.1