Lines Matching +defs:other +defs:kwds
1481 channelid_new(PyTypeObject *cls, PyObject *args, PyObject *kwds)
1489 if (!PyArg_ParseTupleAndKeywords(args, kwds,
1613 channelid_richcompare(PyObject *self, PyObject *other, int op)
1625 if (PyObject_TypeCheck(other, &ChannelIDtype)) {
1626 channelid *othercid = (channelid *)other;
1629 else if (PyLong_Check(other)) {
1632 long long othercid = PyLong_AsLongLongAndOverflow(other, &overflow);
1638 else if (PyNumber_Check(other)) {
1643 PyObject *res = PyObject_RichCompare(pyid, other, op);
1994 interp_create(PyObject *self, PyObject *args, PyObject *kwds)
1999 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|$i:create", kwlist,
2036 interp_destroy(PyObject *self, PyObject *args, PyObject *kwds)
2041 if (!PyArg_ParseTupleAndKeywords(args, kwds,
2158 interp_run_string(PyObject *self, PyObject *args, PyObject *kwds)
2163 if (!PyArg_ParseTupleAndKeywords(args, kwds,
2203 object_is_shareable(PyObject *self, PyObject *args, PyObject *kwds)
2207 if (!PyArg_ParseTupleAndKeywords(args, kwds,
2227 interp_is_running(PyObject *self, PyObject *args, PyObject *kwds)
2231 if (!PyArg_ParseTupleAndKeywords(args, kwds,
2280 channel_destroy(PyObject *self, PyObject *args, PyObject *kwds)
2284 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&:channel_destroy", kwlist,
2339 channel_list_interpreters(PyObject *self, PyObject *args, PyObject *kwds)
2349 args, kwds, "O&$p:channel_list_interpreters",
2401 channel_send(PyObject *self, PyObject *args, PyObject *kwds)
2406 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&O:channel_send", kwlist,
2423 channel_recv(PyObject *self, PyObject *args, PyObject *kwds)
2428 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&|O:channel_recv", kwlist,
2458 channel_close(PyObject *self, PyObject *args, PyObject *kwds)
2465 if (!PyArg_ParseTupleAndKeywords(args, kwds,
2505 channel_release(PyObject *self, PyObject *args, PyObject *kwds)
2513 if (!PyArg_ParseTupleAndKeywords(args, kwds,
2540 channel__channel_id(PyObject *self, PyObject *args, PyObject *kwds)
2542 return channelid_new(&ChannelIDtype, args, kwds);
2633 /* Add other types */