Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dpythonrun.c159 PyObject *bimod, *sysmod; in Py_InitializeEx() local
233 bimod = _PyBuiltin_Init(); in Py_InitializeEx()
234 if (bimod == NULL) in Py_InitializeEx()
236 interp->builtins = PyModule_GetDict(bimod); in Py_InitializeEx()
580 PyObject *bimod, *sysmod; in Py_NewInterpreter() local
602 bimod = _PyImport_FindExtension("__builtin__", "__builtin__"); in Py_NewInterpreter()
603 if (bimod != NULL) { in Py_NewInterpreter()
604 interp->builtins = PyModule_GetDict(bimod); in Py_NewInterpreter()
610 if (bimod != NULL && sysmod != NULL) { in Py_NewInterpreter()
712 PyObject *bimod = PyImport_ImportModule("__builtin__"); in initmain() local
[all …]