Lines Matching defs:input
1 /*[clinic input]
15 "decode input and translates newlines without first invoking an external\n"
58 "decode($self, /, input, final=False)\n"
67 PyObject *input, int final);
73 static const char * const _keywords[] = {"input", "final", NULL};
77 PyObject *input;
84 input = args[0];
93 return_value = _io_IncrementalNewlineDecoder_decode_impl(self, input, final);
158 "* On input, if newline is None, universal newlines mode is\n"
159 " enabled. Lines in the input can end in \'\\n\', \'\\r\', or \'\\r\\n\', and\n"
163 " the other legal values, input lines are only terminated by the given\n"
674 /*[clinic end generated code: output=bb78b568b24759d6 input=a9049054013a1b77]*/