Home
last modified time | relevance | path

Searched refs:f_globals (Results 1 - 25 of 31) sorted by relevance

12

/third_party/python/Lib/idlelib/
H A Dstackviewer.py69 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 Ddebugger.py349 gdict = frame.f_globals
396 modname = frame.f_globals["__name__"]
H A Drun.py630 while tb and tb.tb_frame.f_globals["__name__"] in ["rpc", "run"]:
H A Ddebugger_r.py128 dict = frame.f_globals
214 if name == "f_globals":
/third_party/python/Lib/
H A Dcgitb.py73 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 Dpdb.py440 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 Dbdb.py207 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 Dwarnings.py316 globals = frame.f_globals
H A Dtrace.py537 filename = frame.f_globals.get('__file__', None)
H A Dtraceback.py422 linecache.lazycache(filename, f.f_globals)
/third_party/python/Include/internal/
H A Dpycore_frame.h50 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 Ddebug.py60 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 Dscriptutil.py53 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 Dbase_tasks.py78 line = linecache.getline(filename, lineno, f.f_globals)
/third_party/jinja2/
H A Ddebug.py55 template = tb.tb_frame.f_globals.get("__jinja_template__")
/third_party/node/deps/v8/third_party/jinja2/
H A Ddebug.py56 template = tb.tb_frame.f_globals.get("__jinja_template__")
/third_party/python/Lib/test/support/
H A Dwarnings_helper.py160 registry = frame.f_globals.get('__warningregistry__')
/third_party/skia/third_party/externals/jinja2/
H A Ddebug.py56 template = tb.tb_frame.f_globals.get("__jinja_template__")
/third_party/python/Python/
H A Dsuggestions.c244 dir = PySequence_List(frame->f_frame->f_globals); in offer_suggestions_for_name_error()
H A D_warnings.c850 globals = f->f_frame->f_globals; in setup_context()
/third_party/python/Lib/unittest/
H A Dresult.py224 return '__unittest' in tb.tb_frame.f_globals
/third_party/python/Lib/test/
H A Dtest_frame.py64 self.assertIsNot(f.f_globals, None)
/third_party/python/Lib/unittest/test/
H A Dtest_result.py438 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 Dtest_misc.py1357 self.assertIs(frame.f_globals, _testcapi.frame_getglobals(frame))
/third_party/python/Objects/
H A Dframeobject.c72 PyObject *globals = f->f_frame->f_globals; in frame_getglobals()
833 {"f_globals", (getter)frame_getglobals, NULL, NULL},

Completed in 22 milliseconds

12