Home
last modified time | relevance | path

Searched refs:incrementalDecoder (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/_io/
Dtextio.c967 PyObject *incrementalDecoder = PyObject_CallFunction( in textiowrapper_init() local
970 if (incrementalDecoder == NULL) in textiowrapper_init()
972 Py_XSETREF(self->decoder, incrementalDecoder); in textiowrapper_init()
/external/python/cpython3/Modules/_io/
Dtextio.c885 PyObject *incrementalDecoder = PyObject_CallFunctionObjArgs( in _textiowrapper_set_decoder() local
888 if (incrementalDecoder == NULL) in _textiowrapper_set_decoder()
891 self->decoder = incrementalDecoder; in _textiowrapper_set_decoder()