Searched refs:StreamRecoder (Results 1 – 6 of 6) sorted by relevance
| /third_party/python/Lib/ |
| D | codecs.py | 755 class StreamRecoder: class 949 sr = StreamRecoder(file, data_info.encode, data_info.decode,
|
| /third_party/python/Doc/library/ |
| D | codecs.rst | 214 Return a :class:`StreamRecoder` instance, a wrapped version of *file* 882 StreamRecoder Objects 885 The :class:`StreamRecoder` translates data from one encoding to another, 892 .. class:: StreamRecoder(stream, encode, decode, Reader, Writer, errors='strict') 894 Creates a :class:`StreamRecoder` instance which implements a two-way conversion: 913 :class:`StreamRecoder` instances define the combined interfaces of
|
| /third_party/python/Doc/howto/ |
| D | unicode.rst | 693 The :class:`~codecs.StreamRecoder` class can transparently convert between 698 can wrap it with a :class:`~codecs.StreamRecoder` to return bytes encoded in 701 new_f = codecs.StreamRecoder(f,
|
| /third_party/python/Lib/test/ |
| D | test_codecs.py | 3330 sr = codecs.StreamRecoder(bio, codec.encode, codec.decode, 3339 sr = codecs.StreamRecoder(bio, codec.encode, codec.decode,
|
| /third_party/python/Misc/ |
| D | HISTORY | 19364 - Bug #1235646: ``codecs.StreamRecoder.next()`` now reencodes the data it reads 22833 - StreamReader, StreamReaderWriter and StreamRecoder in the codecs
|
| D | NEWS | 17119 - bpo-33361: Fix a bug in :class:`codecs.StreamRecoder` where seeking might 17207 - bpo-33482: Make `codecs.StreamRecoder.writelines` take a list of bytes.
|