Home | History | Annotate | Download | only in Python

Lines Matching full:importer

965     PyObject *importer;
976 importer = PyDict_GetItem(path_importer_cache, p);
977 if (importer != NULL)
978 return importer;
988 importer = PyObject_CallFunctionObjArgs(hook, p, NULL);
989 if (importer != NULL)
997 if (importer == NULL) {
1000 if (importer != NULL) {
1001 int err = PyDict_SetItem(path_importer_cache, p, importer);
1002 Py_DECREF(importer);
1006 return importer;
1011 PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL;
1016 importer = get_path_importer(path_importer_cache,
1019 Py_XINCREF(importer); /* get_path_importer returns a borrowed reference */
1020 return importer;