HomeSort by relevance Sort by last modified time
    Searched refs:f_locals (Results 1 - 22 of 22) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
frameobject.h 22 PyObject *f_locals; /* local symbol table (any mapping) */ member in struct:_frame
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
frameobject.h 22 PyObject *f_locals; /* local symbol table (any mapping) */ member in struct:_frame
  /external/chromium_org/tools/telemetry/telemetry/
exception_formatter.py 52 _GetFinalFrame(tb).tb_frame.f_locals.iteritems()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
StackViewer.py 83 if frame.f_globals is not frame.f_locals:
84 item = VariablesTreeItem("<locals>", frame.f_locals, self.flist)
RemoteDebugger.py 139 dict = frame.f_locals
213 if name == "f_locals":
Debugger.py 294 ldict = frame.f_locals
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
StackViewer.py 83 if frame.f_globals is not frame.f_locals:
84 item = VariablesTreeItem("<locals>", frame.f_locals, self.flist)
RemoteDebugger.py 139 dict = frame.f_locals
213 if name == "f_locals":
Debugger.py 294 ldict = frame.f_locals
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
bdb.py 370 if '__args__' in frame.f_locals:
371 args = frame.f_locals['__args__']
378 if '__return__' in frame.f_locals:
379 rv = frame.f_locals['__return__']
594 frame.f_locals)
pdb.py 121 # The f_locals dictionary is updated from the actual frame
122 # locals whenever the .f_locals accessor is called, so we
124 self.curframe_locals = self.curframe.f_locals
188 frame.f_locals['__return__'] = return_value
198 frame.f_locals['__exception__'] = exc_type, exc_value
640 self.curframe_locals = self.curframe.f_locals
651 self.curframe_locals = self.curframe.f_locals
    [all...]
inspect.py 204 f_locals local namespace seen by this frame
    [all...]