Lines Matching defs:nargs
56 Py_ssize_t nargs = PyTuple_GET_SIZE(args);
57 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1;
63 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 4, 0, argsbuf);
254 _io_FileIO_read(fileio *self, PyObject *const *args, Py_ssize_t nargs)
259 if (!_PyArg_CheckPositional("read", nargs, 0, 1)) {
262 if (nargs < 1) {
336 _io_FileIO_seek(fileio *self, PyObject *const *args, Py_ssize_t nargs)
342 if (!_PyArg_CheckPositional("seek", nargs, 1, 2)) {
346 if (nargs < 2) {
398 _io_FileIO_truncate(fileio *self, PyObject *const *args, Py_ssize_t nargs)
403 if (!_PyArg_CheckPositional("truncate", nargs, 0, 1)) {
406 if (nargs < 1) {