Lines Matching refs:argtup
3943 PyObject *argtup; in save_reduce() local
3965 &callable, &argtup, &state, &listitems, &dictitems, in save_reduce()
3974 if (!PyTuple_Check(argtup)) { in save_reduce()
4034 if (PyTuple_GET_SIZE(argtup) != 3) { in save_reduce()
4037 "exactly 3, not %zd", PyTuple_GET_SIZE(argtup)); in save_reduce()
4041 cls = PyTuple_GET_ITEM(argtup, 0); in save_reduce()
4048 args = PyTuple_GET_ITEM(argtup, 1); in save_reduce()
4055 kwargs = PyTuple_GET_ITEM(argtup, 2); in save_reduce()
4124 if (PyTuple_GET_SIZE(argtup) < 1) { in save_reduce()
4129 cls = PyTuple_GET_ITEM(argtup, 0); in save_reduce()
4180 newargtup = PyTuple_GetSlice(argtup, 1, PyTuple_GET_SIZE(argtup)); in save_reduce()
4195 save(self, argtup, 0) < 0 || in save_reduce()
6825 PyObject *argtup = NULL; in load_reduce() local
6828 PDATA_POP(self->stack, argtup); in load_reduce()
6829 if (argtup == NULL) in load_reduce()
6833 obj = PyObject_CallObject(callable, argtup); in load_reduce()
6836 Py_DECREF(argtup); in load_reduce()