Searched refs:module_globals (Results 1 – 7 of 7) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | linecache.py | 13 def getline(filename, lineno, module_globals=None): argument 14 lines = getlines(filename, module_globals) 33 def getlines(filename, module_globals=None): argument 40 return updatecache(filename, module_globals) 68 def updatecache(filename, module_globals=None): argument 85 if module_globals and '__loader__' in module_globals: 86 name = module_globals.get('__name__') 87 loader = module_globals['__loader__']
|
D | warnings.py | 216 module=None, registry=None, module_globals=None): argument 251 linecache.getlines(filename, module_globals)
|
D | doctest.py | 1333 def __patched_linecache_getlines(self, filename, module_globals=None): argument 1342 return self.save_linecache_getlines(filename, module_globals)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | linecache.py | 13 def getline(filename, lineno, module_globals=None): argument 14 lines = getlines(filename, module_globals) 33 def getlines(filename, module_globals=None): argument 41 return updatecache(filename, module_globals) 72 def updatecache(filename, module_globals=None): argument 89 if module_globals and '__loader__' in module_globals: 90 name = module_globals.get('__name__') 91 loader = module_globals['__loader__']
|
D | warnings.py | 220 module=None, registry=None, module_globals=None): argument 255 linecache.getlines(filename, module_globals)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | _warnings.c | 632 PyObject *module_globals = NULL; in warnings_warn_explicit() local 636 ®istry, &module_globals)) in warnings_warn_explicit() 639 if (module_globals) { in warnings_warn_explicit() 661 loader = PyDict_GetItemString(module_globals, "__loader__"); in warnings_warn_explicit() 662 module_name = PyDict_GetItemString(module_globals, "__name__"); in warnings_warn_explicit()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | _warnings.c | 633 PyObject *module_globals = NULL; in warnings_warn_explicit() local 637 ®istry, &module_globals)) in warnings_warn_explicit() 640 if (module_globals) { in warnings_warn_explicit() 662 loader = PyDict_GetItemString(module_globals, "__loader__"); in warnings_warn_explicit() 663 module_name = PyDict_GetItemString(module_globals, "__name__"); in warnings_warn_explicit()
|