Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_struct.c1620 s_pack(PyObject *self, PyObject *args) in s_pack() function
1749 {"pack", s_pack, METH_VARARGS, s_pack__doc__},
1893 result = s_pack(s_object, newargs); in pack()
/external/python/cpython3/Modules/
D_struct.c1823 s_pack(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in s_pack() function
1986 {"pack", (PyCFunction)s_pack, METH_FASTCALL, s_pack__doc__},
2140 result = s_pack(s_object, args + 1, nargs - 1); in pack()