Home | History | Annotate | Download | only in Modules

Lines Matching refs:newargs

1588     PyObject *newargs;

1591 newargs = PyTuple_New(0);
1602 newargs = PySequence_GetSlice(args, 1, n);
1604 if (newargs == NULL)
1608 result = PyDict_Type.tp_init(self, newargs, kwds);
1609 Py_DECREF(newargs);