Home | History | Annotate | Download | only in Lib

Lines Matching refs:module_globals

15 def getline(filename, lineno, module_globals=None):
16 lines = getlines(filename, module_globals)
37 def getlines(filename, module_globals=None):
47 return updatecache(filename, module_globals)
82 def updatecache(filename, module_globals=None):
101 if lazycache(filename, module_globals):
147 def lazycache(filename, module_globals):
148 """Seed the cache for filename with module_globals.
168 if module_globals and '__loader__' in module_globals:
169 name = module_globals.get('__name__')
170 loader = module_globals['__loader__']