Home
last modified time | relevance | path

Searched refs:s_pack_into (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
D_struct.c1659 s_pack_into(PyObject *self, PyObject *args) in s_pack_into() function
1750 {"pack_into", s_pack_into, METH_VARARGS, s_pack_into__doc__},
1923 result = s_pack_into(s_object, newargs); in pack_into()
/external/python/cpython3/Modules/
D_struct.c1862 s_pack_into(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in s_pack_into() function
1987 {"pack_into", (PyCFunction)s_pack_into, METH_FASTCALL, s_pack_into__doc__},
2168 result = s_pack_into(s_object, args + 1, nargs - 1); in pack_into()