/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
StackViewer.py | 65 modname = frame.f_globals["__name__"] 83 if frame.f_globals is not frame.f_locals: 86 item = VariablesTreeItem("<globals>", frame.f_globals, self.flist)
|
Debugger.py | 295 gdict = frame.f_globals 343 modname = frame.f_globals["__name__"]
|
RemoteDebugger.py | 132 dict = frame.f_globals 211 if name == "f_globals":
|
run.py | 349 while tb and tb.tb_frame.f_globals["__name__"] in ["rpc", "run"]:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
StackViewer.py | 65 modname = frame.f_globals["__name__"] 83 if frame.f_globals is not frame.f_locals: 86 item = VariablesTreeItem("<globals>", frame.f_globals, self.flist)
|
Debugger.py | 295 gdict = frame.f_globals 343 modname = frame.f_globals["__name__"]
|
RemoteDebugger.py | 132 dict = frame.f_globals 211 if name == "f_globals":
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
frameobject.h | 21 PyObject *f_globals; /* global symbol table (PyDictObject) */ member in struct:_frame
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
frameobject.h | 21 PyObject *f_globals; /* global symbol table (PyDictObject) */ member in struct:_frame
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
traceback.py | 69 line = linecache.getline(filename, lineno, f.f_globals) 101 line = linecache.getline(filename, lineno, f.f_globals) 305 line = linecache.getline(filename, lineno, f.f_globals)
|
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__']
|
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)
|
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, [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
traceback.py | 69 line = linecache.getline(filename, lineno, f.f_globals) 101 line = linecache.getline(filename, lineno, f.f_globals) 305 line = linecache.getline(filename, lineno, f.f_globals)
|
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__']
|
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)
|
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, [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 16 if sys._getframe().f_back.f_globals.get("__name__") == "__main__": 31 if sys._getframe().f_back.f_globals.get("__name__") == "__main__":
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 16 if sys._getframe().f_back.f_globals.get("__name__") == "__main__": 31 if sys._getframe().f_back.f_globals.get("__name__") == "__main__":
|
/external/chromium_org/third_party/jinja2/ |
debug.py | 60 return '__jinja_template__' in self.tb.tb_frame.f_globals 180 template = tb.tb_frame.f_globals.get('__jinja_template__')
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
result.py | 171 return '__unittest' in tb.tb_frame.f_globals
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 181 return '__unittest' in tb.tb_frame.f_globals
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 181 return '__unittest' in tb.tb_frame.f_globals
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_result.py | 265 f_globals = {} variable in class:Test_TestResult.testStackFrameTrimming.Frame.tb_frame 269 Frame.tb_frame.f_globals['__unittest'] = True
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_result.py | 265 f_globals = {} variable in class:Test_TestResult.testStackFrameTrimming.Frame.tb_frame 269 Frame.tb_frame.f_globals['__unittest'] = True
|