Home
last modified time | relevance | path

Searched refs:getincrementalencoder (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_multibytecodec.py84 encoder = codecs.getincrementalencoder('cp949')()
101 encoder = codecs.getincrementalencoder('jisx0213')()
115 encoder = codecs.getincrementalencoder('jisx0213')()
128 encoder = codecs.getincrementalencoder('euc_jis_2004')()
143 encoder = codecs.getincrementalencoder('iso2022_jp')()
164 buffer_state_encoder = codecs.getincrementalencoder('euc_jis_2004')()
177 non_buffer_state_encoder = codecs.getincrementalencoder('iso2022_jp')()
191 encoder = codecs.getincrementalencoder('euc_jp')()
200 encoder = codecs.getincrementalencoder('euc_jp')()
209 encoder = codecs.getincrementalencoder('shift-jis')('backslashreplace')
[all …]
Dtest_codecs.py103 d = codecs.getincrementalencoder(encoding)()
106 d = codecs.getincrementalencoder(encoding)()
1710 encoder = codecs.getincrementalencoder("idna")()
2178 encoder = codecs.getincrementalencoder(encoding)()
2208 encoder = codecs.getincrementalencoder(encoding)("ignore")
3729 encoder = codecs.getincrementalencoder('rot-13')()
Dtest_io.py4107 encoder = codecs.getincrementalencoder(encoding)()
/external/python/cpython3/Lib/
Dcodecs.py993 def getincrementalencoder(encoding): function
1050 encoder = getincrementalencoder(encoding)(errors, **kwargs)
D_pyio.py2215 make_encoder = codecs.getincrementalencoder(self._encoding)
/external/python/pyserial/serial/tools/
Dminiterm.py467 self.tx_encoder = codecs.getincrementalencoder(encoding)(errors)
/external/python/cpython3/Doc/library/
Dcodecs.rst123 .. function:: getincrementalencoder(encoding)
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1008 >>> encoder = codecs.getincrementalencoder('hz')('strict')
/external/python/cpython3/Misc/
DHISTORY18991 codecs.getincrementaldecoder() and codecs.getincrementalencoder() as well