Home | History | Annotate | Download | only in python2.7

Lines Matching refs:dec_buffer

1668             dec_buffer, dec_flags = self._decoder.getstate()
1670 # len(dec_buffer) bytes ago with decoder state (b'', dec_flags).
1678 # At the snapshot point, len(dec_buffer) bytes before the read,
1679 # the next input to be decoded is dec_buffer + input_chunk.
1680 self._snapshot = (dec_flags, dec_buffer + input_chunk)
1742 dec_buffer, dec_flags = decoder.getstate()
1743 if not dec_buffer and chars_decoded <= chars_to_skip: