|
4 | 4 |
|
5 | 5 | PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *); |
6 | 6 | PyAPI_FUNC(void) PyEval_SetProfileAllThreads(Py_tracefunc, PyObject *); |
7 | | -PyAPI_FUNC(int) _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg); |
8 | 7 | PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *); |
9 | 8 | PyAPI_FUNC(void) PyEval_SetTraceAllThreads(Py_tracefunc, PyObject *); |
10 | | -PyAPI_FUNC(int) _PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg); |
11 | 9 |
|
12 | | -/* Helper to look up a builtin object */ |
13 | | -PyAPI_FUNC(PyObject *) _PyEval_GetBuiltin(PyObject *); |
14 | | -PyAPI_FUNC(PyObject *) _PyEval_GetBuiltinId(_Py_Identifier *); |
15 | 10 | /* Look at the current frame's (if any) code's co_flags, and turn on |
16 | 11 | the corresponding compiler flags in cf->cf_flags. Return 1 if any |
17 | 12 | flag was set, else return 0. */ |
18 | 13 | PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf); |
19 | 14 |
|
20 | 15 | PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(PyThreadState *tstate, struct _PyInterpreterFrame *f, int exc); |
21 | 16 |
|
22 | | -PyAPI_FUNC(void) _PyEval_SetSwitchInterval(unsigned long microseconds); |
23 | | -PyAPI_FUNC(unsigned long) _PyEval_GetSwitchInterval(void); |
24 | | - |
25 | | -PyAPI_FUNC(int) _PyEval_MakePendingCalls(PyThreadState *); |
26 | | - |
27 | 17 | PyAPI_FUNC(Py_ssize_t) PyUnstable_Eval_RequestCodeExtraIndex(freefunc); |
28 | 18 | // Old name -- remove when this API changes: |
29 | 19 | _Py_DEPRECATED_EXTERNALLY(3.12) static inline Py_ssize_t |
|
0 commit comments