We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70b961e commit a1a3193Copy full SHA for a1a3193
Include/cpython/ceval.h
@@ -4,7 +4,7 @@
4
5
PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *);
6
PyAPI_FUNC(void) PyEval_SetProfileAllThreads(Py_tracefunc, PyObject *);
7
-PyAPI_DATA(int) _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);
+PyAPI_FUNC(int) _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);
8
PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
9
PyAPI_FUNC(void) PyEval_SetTraceAllThreads(Py_tracefunc, PyObject *);
10
PyAPI_FUNC(int) _PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);
0 commit comments