Rewind the _decoded_chars buffer.
(self, n)
| 2332 | return locale.getencoding() |
| 2333 | |
| 2334 | def _rewind_decoded_chars(self, n): |
| 2335 | """Rewind the _decoded_chars buffer.""" |
| 2336 | if self._decoded_chars_used < n: |
| 2337 | raise AssertionError("rewind decoded_chars out of bounds") |
| 2338 | self._decoded_chars_used -= n |
| 2339 | |
| 2340 | def _read_chunk(self): |
| 2341 | """ |