mirror of https://github.com/python/cpython
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
|
@ -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_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_DeactivateOpCache(void);
|
||||
|
||||
|
||||
/* --- _Py_EnterRecursiveCall() ----------------------------------------- */
|
||||
|
||||
|
|
Loading…
Reference in New Issue