Home
last modified time | relevance | path

Searched refs:PyFrame_New (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dframeobject.h61 PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *,
/external/python/cpython2/PC/os2vacpp/
Dpython.def189 PyFrame_New
/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c161 py_frame = PyFrame_New( in _ctypes_add_traceback()
/external/python/cpython2/Objects/
Dframeobject.c622 PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals, in PyFrame_New() function
/external/python/cpython2/PC/os2emx/
Dpython27.def325 "PyFrame_New"
/external/python/cpython2/Modules/
Dpyexpat.c346 f = PyFrame_New(tstate, c, PyEval_GetGlobals(), NULL); in call_with_frame()
/external/python/cpython2/Python/
Dceval.c3365 f = PyFrame_New(tstate, co, globals, locals); in PyEval_EvalCodeEx()
4426 f = PyFrame_New(tstate, co, globals, NULL); in fast_function()
/external/python/cpython2/Misc/
DHISTORY11130 - frameobject.c: fix reference count bug in PyFrame_New. Vladimir