diff options
| author | Victor Stinner <vstinner@python.org> | 2024-06-26 13:35:19 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-26 13:35:19 (GMT) |
| commit | e26e0985d94f1b9812cf41f043df89185f247945 (patch) | |
| tree | 822ec897f9914e88f83e7d2821bcb0d45ce2a275 /Include/Python.h | |
| parent | 6bc7e2cca546c11e2b807068a4a612d0d902da11 (diff) | |
| download | cpython-e26e0985d94f1b9812cf41f043df89185f247945.zip cpython-e26e0985d94f1b9812cf41f043df89185f247945.tar.gz cpython-e26e0985d94f1b9812cf41f043df89185f247945.tar.bz2 | |
[3.13] gh-120642: Move private PyCode APIs to the internal C API (#120643) (#121043)
gh-120642: Move private PyCode APIs to the internal C API (#120643)
* Move _Py_CODEUNIT and related functions to pycore_code.h.
* Move _Py_BackoffCounter to pycore_backoff.h.
* Move Include/cpython/optimizer.h content to pycore_optimizer.h.
* Remove Include/cpython/optimizer.h.
* Remove PyUnstable_Replace_Executor().
Rename functions:
* PyUnstable_GetExecutor() => _Py_GetExecutor()
* PyUnstable_GetOptimizer() => _Py_GetOptimizer()
* PyUnstable_SetOptimizer() => _Py_SetTier2Optimizer()
* PyUnstable_Optimizer_NewCounter() => _PyOptimizer_NewCounter()
* PyUnstable_Optimizer_NewUOpOptimizer() => _PyOptimizer_NewUOpOptimizer()
(cherry picked from commit 9e4a81f00fef689c6e18a64245aa064eaadc7ac7)
Diffstat (limited to 'Include/Python.h')
| -rw-r--r-- | Include/Python.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h index 95bc631..882b96b 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -131,6 +131,5 @@ #include "fileutils.h" #include "cpython/pyfpe.h" #include "cpython/tracemalloc.h" -#include "cpython/optimizer.h" #endif /* !Py_PYTHON_H */ |
