Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_struct.py692 it = s.iter_unpack(b"")
694 it = s.iter_unpack(b"1234567")
698 s.iter_unpack(b"123456")
700 s.iter_unpack(b"12345678")
704 s.iter_unpack(b"")
706 s.iter_unpack(b"12")
709 iter_unpack_type = type(struct.Struct(">ibcp").iter_unpack(b""))
715 it = s.iter_unpack(b)
725 it = s.iter_unpack(memoryview(b))
735 it = s.iter_unpack(b)
[all …]
/external/python/cpython3/Modules/clinic/
D_struct.c.h361 {"iter_unpack", (PyCFunction)(void(*)(void))iter_unpack, METH_FASTCALL, iter_unpack__doc__},
368 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)
447 .. method:: iter_unpack(buffer)
449 Identical to the :func:`iter_unpack` function, using the compiled format.
/external/pigweed/pw_tokenizer/py/pw_tokenizer/
Ddatabase.py159 for key, value in struct.iter_unpack('12sI', sections):
/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