Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dimport.c2360 static PyObject *pkgstr = NULL; in get_parent() local
2377 if (pkgstr == NULL) { in get_parent()
2378 pkgstr = PyString_InternFromString("__package__"); in get_parent()
2379 if (pkgstr == NULL) in get_parent()
2385 pkgname = PyDict_GetItem(globals, pkgstr); in get_parent()
2427 error = PyDict_SetItem(globals, pkgstr, modname); in get_parent()
2445 error = PyDict_SetItem(globals, pkgstr, Py_None); in get_parent()
2465 error = PyDict_SetItem(globals, pkgstr, pkgname); in get_parent()