summaryrefslogtreecommitdiffstats
path: root/Include/cpython
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-03-08 21:56:37 (GMT)
committerGitHub <noreply@github.com>2021-03-08 21:56:37 (GMT)
commit9f672a52f55ce198d5689b5771948350028b4a3b (patch)
tree97b3c2faff07ba77c499e0a223dd9f1de7e72152 /Include/cpython
parent3abf6f010243a91bf57cbf357dac33193f7b8407 (diff)
downloadcpython-9f672a52f55ce198d5689b5771948350028b4a3b.zip
cpython-9f672a52f55ce198d5689b5771948350028b4a3b.tar.gz
cpython-9f672a52f55ce198d5689b5771948350028b4a3b.tar.bz2
bpo-37146: Move _PyEval_DeactivateOpCache() to the internal C API (GH-24786)
Don't export the symbol anymore.
Diffstat (limited to 'Include/cpython')
-rw-r--r--Include/cpython/ceval.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/cpython/ceval.h b/Include/cpython/ceval.h
index 05dcfac..0633892 100644
--- a/Include/cpython/ceval.h
+++ b/Include/cpython/ceval.h
@@ -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);