Searched refs:iter_unpack (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_struct.py | 692 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.h | 361 {"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/ |
D | struct.rst | 81 .. 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/ |
D | database.py | 159 for key, value in struct.iter_unpack('12sI', sections):
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 1510 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/ |
D | HISTORY | 5027 - Issue #17804: New function ``struct.iter_unpack`` allows for streaming
|