Home
last modified time | relevance | path

Searched refs:iter_unpack (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_struct.py640 it = s.iter_unpack(b"")
642 it = s.iter_unpack(b"1234567")
646 s.iter_unpack(b"123456")
648 s.iter_unpack(b"12345678")
652 s.iter_unpack(b"")
654 s.iter_unpack(b"12")
659 it = s.iter_unpack(b)
669 it = s.iter_unpack(memoryview(b))
679 it = s.iter_unpack(b)
692 it = struct.iter_unpack('>IB', bytes(range(1, 11)))
/external/python/cpython3/Modules/clinic/
D_struct.c.h280 {"iter_unpack", (PyCFunction)iter_unpack, METH_FASTCALL, iter_unpack__doc__},
287 iter_unpack(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in iter_unpack() function
/external/python/cpython3/Doc/library/
Dstruct.rst81 .. function:: iter_unpack(format, buffer)
452 .. method:: iter_unpack(buffer)
454 Identical to the :func:`iter_unpack` function, using the compiled format.
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1510 New function :mod:`~struct.iter_unpack` and a new
1511 :meth:`struct.Struct.iter_unpack` method on compiled formats provide streamed
/external/python/cpython3/Misc/
DHISTORY5027 - Issue #17804: New function ``struct.iter_unpack`` allows for streaming