Home | History | Annotate | Download | only in clinic

Lines Matching defs:errors

6 "encode($self, /, input, errors=None)\n"
11 "\'errors\' may be given to set a different error handling scheme. Default is\n"
12 "\'strict\' meaning that encoding errors raise a UnicodeEncodeError. Other possible\n"
22 const char *errors);
28 static const char * const _keywords[] = {"input", "errors", NULL};
31 const char *errors = NULL;
34 &input, &errors)) {
37 return_value = _multibytecodec_MultibyteCodec_encode_impl(self, input, errors);
44 "decode($self, /, input, errors=None)\n"
49 "\'errors\' may be given to set a different error handling scheme. Default is\n"
50 "\'strict\' meaning that encoding errors raise a UnicodeDecodeError. Other possible\n"
60 const char *errors);
66 static const char * const _keywords[] = {"input", "errors", NULL};
69 const char *errors = NULL;
72 &input, &errors)) {
75 return_value = _multibytecodec_MultibyteCodec_decode_impl(self, &input, errors);