Lines Matching defs:args
24 _io_IncrementalNewlineDecoder___init__(PyObject *self, PyObject *args, PyObject *kwargs)
31 Py_ssize_t nargs = PyTuple_GET_SIZE(args);
37 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 2, 3, 0, argsbuf);
70 _io_IncrementalNewlineDecoder_decode(nldecoder_object *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
80 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
81 if (!args) {
84 input = args[0];
88 final = _PyLong_AsInt(args[1]);
182 _io_TextIOWrapper___init__(PyObject *self, PyObject *args, PyObject *kwargs)
189 Py_ssize_t nargs = PyTuple_GET_SIZE(args);
198 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 6, 0, argsbuf);
297 _io_TextIOWrapper_reconfigure(textio *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
310 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 0, 0, argsbuf);
311 if (!args) {
317 if (args[0]) {
318 encoding = args[0];
323 if (args[1]) {
324 errors = args[1];
329 if (args[2]) {
330 newline_obj = args[2];
335 if (args[3]) {
336 line_buffering_obj = args[3];
341 write_through_obj = args[4];
409 _io_TextIOWrapper_read(textio *self, PyObject *const *args, Py_ssize_t nargs)
420 if (!_Py_convert_optional_to_ssize_t(args[0], &n)) {
442 _io_TextIOWrapper_readline(textio *self, PyObject *const *args, Py_ssize_t nargs)
455 PyObject *iobj = _PyNumber_Index(args[0]);
484 _io_TextIOWrapper_seek(textio *self, PyObject *const *args, Py_ssize_t nargs)
493 cookieObj = args[0];
497 whence = _PyLong_AsInt(args[1]);
537 _io_TextIOWrapper_truncate(textio *self, PyObject *const *args, Py_ssize_t nargs)
548 pos = args[0];