mirror of
https://github.com/python/cpython.git
synced 2025-11-13 07:26:31 +00:00
bpo-37146: Move _PyEval_DeactivateOpCache() to the internal C API (GH-24786)
Don't export the symbol anymore.
This commit is contained in:
parent
3abf6f0102
commit
9f672a52f5
2 changed files with 2 additions and 2 deletions
|
|
@ -28,5 +28,3 @@ PyAPI_FUNC(Py_ssize_t) _PyEval_RequestCodeExtraIndex(freefunc);
|
||||||
|
|
||||||
PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *);
|
PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *);
|
||||||
PyAPI_FUNC(int) _PyEval_SliceIndexNotNone(PyObject *, Py_ssize_t *);
|
PyAPI_FUNC(int) _PyEval_SliceIndexNotNone(PyObject *, Py_ssize_t *);
|
||||||
|
|
||||||
PyAPI_FUNC(void) _PyEval_DeactivateOpCache(void);
|
|
||||||
|
|
|
||||||
|
|
@ -62,6 +62,8 @@ extern void _PyEval_FiniGIL(PyInterpreterState *interp);
|
||||||
|
|
||||||
extern void _PyEval_ReleaseLock(PyThreadState *tstate);
|
extern void _PyEval_ReleaseLock(PyThreadState *tstate);
|
||||||
|
|
||||||
|
extern void _PyEval_DeactivateOpCache(void);
|
||||||
|
|
||||||
|
|
||||||
/* --- _Py_EnterRecursiveCall() ----------------------------------------- */
|
/* --- _Py_EnterRecursiveCall() ----------------------------------------- */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue