diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-22 13:30:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 13:30:13 (GMT) |
commit | 756add081ead8fa9aeb11ac178e581ba2450f296 (patch) | |
tree | 5f95aedfc0ec54c06a8860f88fdcb3a3282899e8 | |
parent | 2aba047f0a2be57cc33a57756707452fdd6a1b3f (diff) | |
download | cpython-756add081ead8fa9aeb11ac178e581ba2450f296.zip cpython-756add081ead8fa9aeb11ac178e581ba2450f296.tar.gz cpython-756add081ead8fa9aeb11ac178e581ba2450f296.tar.bz2 |
gh-106320: Document private C API removal in What's New 3.13 (#107027)
-rw-r--r-- | Doc/whatsnew/3.13.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index a778e12..85f0ca1 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -838,6 +838,13 @@ Deprecated Removed ------- +* Remove many APIs (functions, macros, variables) with names prefixed by + ``_Py`` or ``_PY`` (considered as private API). If your project is affected + by one of these removals and you consider that the removed API should remain + available, please open a new issue to request a public C API and + add ``cc @vstinner`` to the issue to notify Victor Stinner. + (Contributed by Victor Stinner in :gh:`106320`.) + * Remove functions deprecated in Python 3.9. * ``PyEval_CallObject()``, ``PyEval_CallObjectWithKeywords()``: use |