Lines Matching defs:nargs
20 stringlib_expandtabs(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
26 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
29 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 1, 0, argsbuf);
62 stringlib_ljust(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
68 if (!_PyArg_CheckPositional("ljust", nargs, 1, 2)) {
83 if (nargs < 2) {
118 stringlib_rjust(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
124 if (!_PyArg_CheckPositional("rjust", nargs, 1, 2)) {
139 if (nargs < 2) {
174 stringlib_center(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
180 if (!_PyArg_CheckPositional("center", nargs, 1, 2)) {
195 if (nargs < 2) {