Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dimport.c2338 static PyObject *pkgstr = NULL; in get_parent() local
2355 if (pkgstr == NULL) { in get_parent()
2356 pkgstr = PyString_InternFromString("__package__"); in get_parent()
2357 if (pkgstr == NULL) in get_parent()
2363 pkgname = PyDict_GetItem(globals, pkgstr); in get_parent()
2405 error = PyDict_SetItem(globals, pkgstr, modname); in get_parent()
2423 error = PyDict_SetItem(globals, pkgstr, Py_None); in get_parent()
2443 error = PyDict_SetItem(globals, pkgstr, pkgname); in get_parent()