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 vstinner
Recipients larry, methane, serhiy.storchaka, vstinner
Date 2017-01-17.16:31:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484670705.59.0.0193443230555.issue29300@psf.upfronthosting.co.za>
In-reply-to
Content
Attached patch modify the _struct module to use FASTCALL and Argument Clinic.

AC requires a summary line, so I duplicated the first sentence of iter_unpack() docstring:

iter_unpack(fmt, buffer, /)
    Return an iterator yielding tuples unpacked from the given bytes.
    
    Return an iterator yielding tuples unpacked from the given bytes
    source according to the format string, like a repeated invocation of
    unpack_from().  Requires that the bytes length be a multiple of the
    format struct size.
History
Date User Action Args
2017-01-17 16:31:45vstinnersetrecipients: + vstinner, larry, methane, serhiy.storchaka
2017-01-17 16:31:45vstinnersetmessageid: <1484670705.59.0.0193443230555.issue29300@psf.upfronthosting.co.za>
2017-01-17 16:31:45vstinnerlinkissue29300 messages
2017-01-17 16:31:45vstinnercreate