Lines Matching defs:args
89 scanner_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
95 encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
570 py_scanstring(PyObject* Py_UNUSED(self), PyObject *args)
577 if (!PyArg_ParseTuple(args, "On|i:scanstring", &pystr, &end, &strict)) {
1139 scanner_call(PyScannerObject *self, PyObject *args, PyObject *kwds)
1147 if (!PyArg_ParseTupleAndKeywords(args, kwds, "On:scan_once", kwlist, &pystr, &idx))
1166 scanner_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1173 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:make_scanner", kwlist, &ctx))
1238 encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1247 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOOOUUppp:make_encoder", kwlist,
1292 encoder_call(PyEncoderObject *self, PyObject *args, PyObject *kwds)
1299 if (!PyArg_ParseTupleAndKeywords(args, kwds, "On:_iterencode", kwlist,