Home
last modified time | relevance | path

Searched refs:f_locals (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython2/Objects/
Dframeobject.c59 Py_INCREF(f->f_locals); in WARN_GET_SET()
60 return f->f_locals; in WARN_GET_SET()
469 Py_CLEAR(f->f_locals); in frame_dealloc()
500 Py_VISIT(f->f_locals); in frame_traverse()
707 f->f_locals = NULL; in PyFrame_New()
728 f->f_locals = locals; in PyFrame_New()
734 f->f_locals = locals; in PyFrame_New()
878 locals = f->f_locals; in PyFrame_FastToLocals()
880 locals = f->f_locals = PyDict_New(); in PyFrame_FastToLocals()
930 locals = f->f_locals; in PyFrame_LocalsToFast()
/external/python/cpython2/Lib/
Dbdb.py370 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)
Dpdb.py124 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
Dinspect.py829 return ArgInfo(args, varargs, varkw, frame.f_locals)
/external/python/cpython2/Lib/idlelib/
DStackViewer.py85 if frame.f_globals is not frame.f_locals:
86 item = VariablesTreeItem("<locals>", frame.f_locals, self.flist)
DRemoteDebugger.py138 dict = frame.f_locals
DDebugger.py342 ldict = frame.f_locals
/external/python/cpython2/Include/
Dframeobject.h22 PyObject *f_locals; /* local symbol table (any mapping) */ member
/external/python/cpython2/Python/
Dceval.c2074 if ((x = f->f_locals) != NULL) in PyEval_EvalFrameEx()
2172 if ((x = f->f_locals) != NULL) { in PyEval_EvalFrameEx()
2194 if ((x = f->f_locals) != NULL) { in PyEval_EvalFrameEx()
2293 if ((v = f->f_locals) == NULL) { in PyEval_EvalFrameEx()
2603 f->f_locals == NULL ? in PyEval_EvalFrameEx()
2604 Py_None : f->f_locals, in PyEval_EvalFrameEx()
2611 f->f_locals == NULL ? in PyEval_EvalFrameEx()
2612 Py_None : f->f_locals, in PyEval_EvalFrameEx()
2637 if ((x = f->f_locals) == NULL) { in PyEval_EvalFrameEx()
4131 return current_frame->f_locals; in PyEval_GetLocals()
[all …]
/external/libmojo/third_party/jinja2/
Ddebug.py204 real_locals = tb.tb_frame.f_locals.copy()
/external/python/cpython2/Doc/library/
Dtypes.rst234 as ``FrameType.f_locals`` or ``array.array.typecode``. This type is used as
Dinspect.rst159 | | f_locals | local namespace seen by | |
/external/libmojo/third_party/ply/
Dlex.py437 if f.f_globals != f.f_locals:
438 ldict.update(f.f_locals)
Dyacc.py2712 if f.f_globals != f.f_locals:
2713 ldict.update(f.f_locals)
/external/ply/ply/ply/
Dlex.py452 if f.f_globals != f.f_locals:
453 ldict.update(f.f_locals)
Dyacc.py2886 if f.f_globals != f.f_locals:
2887 ldict.update(f.f_locals)
/external/python/cpython2/Lib/test/
Dtest_inspect.py96 self.assertFalse(inspect.isgetsetdescriptor(type(tb.tb_frame).f_locals))
/external/protobuf/python/google/protobuf/pyext/
Ddescriptor.cc108 if (frame->f_globals != frame->f_locals) { in _CalledFromGeneratedFile()
/external/python/cpython2/Parser/
Dasdl_c.py154 self.emit(s % sys._getframe(1).f_locals, depth)
/external/python/cpython2/Doc/reference/
Ddatamodel.rst991 single: f_locals (frame attribute)
998 :attr:`f_code` is the code object being executed in this frame; :attr:`f_locals`
/external/python/cpython2/Misc/
Dcheatsheet1297 f_locals (dict, R/O): local vars
DHISTORY7734 free variables and cell variables to and from the frame's f_locals.