/third_party/python/Lib/idlelib/ |
H A D | stackviewer.py | 69 modname = frame.f_globals["__name__"] 87 if frame.f_globals is not frame.f_locals: 90 item = VariablesTreeItem("<globals>", frame.f_globals, self.flist)
|
H A D | debugger.py | 349 gdict = frame.f_globals 396 modname = frame.f_globals["__name__"]
|
H A D | run.py | 630 while tb and tb.tb_frame.f_globals["__name__"] in ["rpc", "run"]:
|
H A D | debugger_r.py | 128 dict = frame.f_globals 214 if name == "f_globals":
|
/third_party/python/Lib/ |
H A D | cgitb.py | 73 if name in frame.f_globals: 74 return 'global', frame.f_globals[name] 75 if '__builtins__' in frame.f_globals: 76 builtins = frame.f_globals['__builtins__']
|
H A D | pdb.py | 440 globals = self.curframe.f_globals 567 ns = {**self.curframe.f_globals, **self.curframe_locals} 730 self.curframe.f_globals, 830 globs = frame.f_globals if frame else None 1177 globals = self.curframe.f_globals 1241 return eval(arg, self.curframe.f_globals, self.curframe_locals) 1249 return eval(arg, self.curframe.f_globals, self.curframe_locals) 1251 return eval(arg, frame.f_globals, frame.f_locals) 1329 tmp = self.curframe.f_globals.get("__file__") 1334 lines = linecache.getlines(filename, self.curframe.f_globals) [all...] |
H A D | bdb.py | 207 self.is_skipped_module(frame.f_globals.get('__name__')): 574 line = linecache.getline(filename, lineno, frame.f_globals) 845 val = eval(b.cond, frame.f_globals, frame.f_locals) 874 line = linecache.getline(fn, frame.f_lineno, frame.f_globals)
|
H A D | warnings.py | 316 globals = frame.f_globals
|
H A D | trace.py | 537 filename = frame.f_globals.get('__file__', None)
|
H A D | traceback.py | 422 linecache.lazycache(filename, f.f_globals)
|
/third_party/python/Include/internal/ |
H A D | pycore_frame.h | 50 PyObject *f_globals; /* Borrowed reference */ member 109 frame->f_globals = func->func_globals; in _PyFrame_InitializeSpecials()
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | debug.py | 60 return '__jinja_template__' in self.tb.tb_frame.f_globals 180 template = tb.tb_frame.f_globals.get('__jinja_template__')
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | scriptutil.py | 53 while frame.f_globals['__name__'] != '__main__': 57 filename = frame.f_globals['__file__'] 59 spec = frame.f_globals['__spec__']
|
/third_party/python/Lib/asyncio/ |
H A D | base_tasks.py | 78 line = linecache.getline(filename, lineno, f.f_globals)
|
/third_party/jinja2/ |
H A D | debug.py | 55 template = tb.tb_frame.f_globals.get("__jinja_template__")
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | debug.py | 56 template = tb.tb_frame.f_globals.get("__jinja_template__")
|
/third_party/python/Lib/test/support/ |
H A D | warnings_helper.py | 160 registry = frame.f_globals.get('__warningregistry__')
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | debug.py | 56 template = tb.tb_frame.f_globals.get("__jinja_template__")
|
/third_party/python/Python/ |
H A D | suggestions.c | 244 dir = PySequence_List(frame->f_frame->f_globals); in offer_suggestions_for_name_error()
|
H A D | _warnings.c | 850 globals = f->f_frame->f_globals; in setup_context()
|
/third_party/python/Lib/unittest/ |
H A D | result.py | 224 return '__unittest' in tb.tb_frame.f_globals
|
/third_party/python/Lib/test/ |
H A D | test_frame.py | 64 self.assertIsNot(f.f_globals, None)
|
/third_party/python/Lib/unittest/test/ |
H A D | test_result.py | 438 f_globals = {} variable in Test_TestResult.testStackFrameTrimming.Frame.tb_frame 442 Frame.tb_frame.f_globals['__unittest'] = True
|
/third_party/python/Lib/test/test_capi/ |
H A D | test_misc.py | 1357 self.assertIs(frame.f_globals, _testcapi.frame_getglobals(frame))
|
/third_party/python/Objects/ |
H A D | frameobject.c | 72 PyObject *globals = f->f_frame->f_globals; in frame_getglobals() 833 {"f_globals", (getter)frame_getglobals, NULL, NULL},
|