/external/python/cpython2/Lib/idlelib/ |
D | StackViewer.py | 67 modname = frame.f_globals["__name__"] 85 if frame.f_globals is not frame.f_locals: 88 item = VariablesTreeItem("<globals>", frame.f_globals, self.flist)
|
D | Debugger.py | 343 gdict = frame.f_globals 391 modname = frame.f_globals["__name__"]
|
D | run.py | 368 while tb and tb.tb_frame.f_globals["__name__"] in ["rpc", "run"]:
|
D | RemoteDebugger.py | 131 dict = frame.f_globals
|
/external/python/cpython2/Lib/ |
D | cgitb.py | 69 if name in frame.f_globals: 70 return 'global', frame.f_globals[name] 71 if '__builtins__' in frame.f_globals: 72 builtins = frame.f_globals['__builtins__']
|
D | traceback.py | 69 line = linecache.getline(filename, lineno, f.f_globals) 101 line = linecache.getline(filename, lineno, f.f_globals) 306 line = linecache.getline(filename, lineno, f.f_globals)
|
D | pdb.py | 224 globals = self.curframe.f_globals 388 self.curframe.f_globals, 480 globs = self.curframe.f_globals if hasattr(self, 'curframe') else None 714 globals = self.curframe.f_globals 760 return eval(arg, self.curframe.f_globals, 811 self.curframe.f_globals) 830 value = eval(arg, self.curframe.f_globals,
|
D | bdb.py | 114 self.is_skipped_module(frame.f_globals.get('__name__')): 382 line = linecache.getline(filename, lineno, frame.f_globals) 593 val = eval(b.cond, frame.f_globals, 624 line = linecache.getline(fn, frame.f_lineno, frame.f_globals)
|
D | warnings.py | 213 globals = caller.f_globals
|
D | collections.py | 396 result.__module__ = _sys._getframe(1).f_globals.get('__name__', '__main__')
|
D | trace.py | 598 filename = frame.f_globals.get('__file__', None)
|
/external/python/cpython2/Objects/ |
D | frameobject.c | 21 {"f_globals", T_OBJECT, OFF(f_globals), RO}, 468 Py_DECREF(f->f_globals); in frame_dealloc() 499 Py_VISIT(f->f_globals); in frame_traverse() 637 if (back == NULL || back->f_globals != globals) { in PyFrame_New() 717 f->f_globals = globals; in PyFrame_New()
|
/external/python/cpython2/Include/ |
D | frameobject.h | 21 PyObject *f_globals; /* global symbol table (PyDictObject) */ member
|
/external/python/cpython2/Lib/ctypes/test/ |
D | __init__.py | 24 if sys._getframe().f_back.f_globals.get("__name__") == "__main__": 39 if sys._getframe().f_back.f_globals.get("__name__") == "__main__":
|
/external/libmojo/third_party/jinja2/ |
D | debug.py | 60 return '__jinja_template__' in self.tb.tb_frame.f_globals 180 template = tb.tb_frame.f_globals.get('__jinja_template__')
|
/external/python/cpython2/Lib/unittest/ |
D | result.py | 181 return '__unittest' in tb.tb_frame.f_globals
|
/external/python/cpython2/Lib/unittest/test/ |
D | test_result.py | 265 f_globals = {} variable in Test_TestResult.testStackFrameTrimming.Frame.tb_frame 269 Frame.tb_frame.f_globals['__unittest'] = True
|
/external/python/cpython2/Python/ |
D | ceval.c | 1041 lltrace = PyDict_GetItemString(f->f_globals, "__lltrace__") != NULL; in PyEval_EvalFrameEx() 2275 err = PyDict_SetItem(f->f_globals, w, v); in PyEval_EvalFrameEx() 2284 if ((err = PyDict_DelItem(f->f_globals, w)) != 0) in PyEval_EvalFrameEx() 2318 x = PyDict_GetItem(f->f_globals, w); in PyEval_EvalFrameEx() 2345 d = (PyDictObject *)(f->f_globals); in PyEval_EvalFrameEx() 2373 x = PyDict_GetItem(f->f_globals, w); in PyEval_EvalFrameEx() 2602 f->f_globals, in PyEval_EvalFrameEx() 2610 f->f_globals, in PyEval_EvalFrameEx() 3046 x = PyFunction_New(v, f->f_globals); in PyEval_EvalFrameEx() 3070 x = PyFunction_New(v, f->f_globals); in PyEval_EvalFrameEx() [all …]
|
D | _warnings.c | 458 globals = f->f_globals; in setup_context()
|
/external/libmojo/third_party/ply/ |
D | lex.py | 436 ldict = f.f_globals.copy() 437 if f.f_globals != f.f_locals:
|
D | yacc.py | 2711 ldict = f.f_globals.copy() 2712 if f.f_globals != f.f_locals:
|
/external/ply/ply/ply/ |
D | lex.py | 451 ldict = f.f_globals.copy() 452 if f.f_globals != f.f_locals:
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | lex.py | 524 ldict = f.f_globals # Grab its globals dictionary
|
/external/protobuf/python/google/protobuf/pyext/ |
D | descriptor.cc | 108 if (frame->f_globals != frame->f_locals) { in _CalledFromGeneratedFile()
|
/external/python/cpython2/Lib/test/ |
D | test_support.py | 880 registry = frame.f_globals.get('__warningregistry__')
|