diff options
| author | Victor Stinner <vstinner@python.org> | 2019-11-20 12:17:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-20 12:17:09 +0100 |
| commit | 488d02a24142948bfb1fafd19fa48e61fcbbabc5 (patch) | |
| tree | 19ed65afb8bfbb0552ba2f86ab546d9fb567a859 /Doc | |
| parent | e7e699e4df73420ddccaa0057cd07ebb3b590b9b (diff) | |
| download | cpython-git-488d02a24142948bfb1fafd19fa48e61fcbbabc5.tar.gz | |
bpo-38835: Exclude PyFPE macros from the stable API (GH-17228)
Exclude PyFPE_START_PROTECT() and PyFPE_END_PROTECT() macros of
pyfpe.h from Py_LIMITED_API (stable API).
Diffstat (limited to 'Doc')
| -rw-r--r-- | Doc/whatsnew/3.9.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index ce1d3e0e96..542a031960 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -226,6 +226,10 @@ Build and C API Changes and refers to a constant string. (Contributed by Serhiy Storchaka in :issue:`38650`.) +* Exclude ``PyFPE_START_PROTECT()`` and ``PyFPE_END_PROTECT()`` macros of + ``pyfpe.h`` from ``Py_LIMITED_API`` (stable API). + (Contributed by Victor Stinner in :issue:`38835`.) + Deprecated ========== |
