Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dcodecs.c58 PyObject *codec_search_path = interp->codecs.search_path; in PyCodec_Unregister() local
59 assert(PyList_CheckExact(codec_search_path)); in PyCodec_Unregister()
60 for (Py_ssize_t i = 0; i < PyList_GET_SIZE(codec_search_path); i++) { in PyCodec_Unregister()
64 PyObject *item = PyList_GetItemRef(codec_search_path, i); in PyCodec_Unregister()
69 ret = PyList_SetSlice(codec_search_path, i, i+1, NULL); in PyCodec_Unregister()