Lines Matching refs:input
155 * On input, if newline is None, universal newlines mode is
156 enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
160 the other legal values, input lines are only terminated by the given
1915 def decode(self, input, final=False):
1916 # decode input (with the eventual \r from a previous pass)
1918 output = input
1920 output = self.decoder.decode(input, final=final)
1998 enabled. With this enabled, on input, the lines endings '\n', '\r',
2087 # and next_input is the chunk of input bytes that comes next after the
2091 # - "bytes_..." for integer variables that count input bytes
2286 # value). The entire input chunk is sent to the decoder, though
2295 # file where the decoder's input buffer is empty.
2316 # the next input to be decoded is dec_buffer + input_chunk.
2370 # be O(1) in most situations (common decoders, sensible input).