Lines Matching defs:errors
6 "IncrementalNewlineDecoder(decoder, translate, errors=\'strict\')\n"
21 PyObject *errors);
27 static const char * const _keywords[] = {"decoder", "translate", "errors", NULL};
35 PyObject *errors = NULL;
49 errors = fastargs[2];
51 return_value = _io_IncrementalNewlineDecoder___init___impl((nldecoder_object *)self, decoder, translate, errors);
142 "TextIOWrapper(buffer, encoding=None, errors=None, newline=None,\n"
151 "errors determines the strictness of encoding and decoding (see\n"
177 const char *encoding, PyObject *errors,
185 static const char * const _keywords[] = {"buffer", "encoding", "errors", "newline", "line_buffering", "write_through", NULL};
193 PyObject *errors = Py_None;
230 errors = fastargs[2];
272 return_value = _io_TextIOWrapper___init___impl((textio *)self, buffer, encoding, errors, newline, line_buffering, write_through);
279 "reconfigure($self, /, *, encoding=None, errors=None, newline=None,\n"
292 PyObject *errors, PyObject *newline_obj,
300 static const char * const _keywords[] = {"encoding", "errors", "newline", "line_buffering", "write_through", NULL};
305 PyObject *errors = Py_None;
324 errors = args[1];
343 return_value = _io_TextIOWrapper_reconfigure_impl(self, encoding, errors, newline_obj, line_buffering_obj, write_through_obj);