Set the _decoded_chars buffer.
(self, chars)
| 2308 | # Text returned from the decoder is buffered here until the client |
| 2309 | # requests it by calling our read() or readline() method. |
| 2310 | def _set_decoded_chars(self, chars): |
| 2311 | """Set the _decoded_chars buffer.""" |
| 2312 | self._decoded_chars = chars |
| 2313 | self._decoded_chars_used = 0 |
| 2314 | |
| 2315 | def _get_decoded_chars(self, n=None): |
| 2316 | """Advance into the _decoded_chars buffer.""" |
no outgoing calls
no test coverage detected