Lines Matching +defs:other +defs:kwds
888 "something other than TypeError");
898 "something other than TypeError");
919 "something other than SystemError");
943 "something other than TypeError");
6879 matmulType_matmul(PyObject *self, PyObject *other)
6881 return Py_BuildValue("(sOO)", "matmul", self, other);
6885 matmulType_imatmul(PyObject *self, PyObject *other)
6887 return Py_BuildValue("(sOO)", "imatmul", self, other);
6982 ipowType_ipow(PyObject *self, PyObject *other, PyObject *mod)
6984 return Py_BuildValue("OO", other, mod);
7006 awaitObject_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
7136 recurse_infinitely_error_init(PyObject *self, PyObject *args, PyObject *kwds)
7156 MyList_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
7158 PyObject* op = PyList_Type.tp_new(type, args, kwds);