Lines Matching refs:final
143 "encode($self, /, input, final=False)\n"
153 int final);
159 static const char * const _keywords[] = {"input", "final", NULL};
164 int final = 0;
174 final = _PyLong_AsInt(args[1]);
175 if (final == -1 && PyErr_Occurred()) {
179 return_value = _multibytecodec_MultibyteIncrementalEncoder_encode_impl(self, input, final);
249 "decode($self, /, input, final=False)\n"
259 int final);
265 static const char * const _keywords[] = {"input", "final", NULL};
270 int final = 0;
286 final = _PyLong_AsInt(args[1]);
287 if (final == -1 && PyErr_Occurred()) {
291 return_value = _multibytecodec_MultibyteIncrementalDecoder_decode_impl(self, &input, final);