diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-10-19 22:47:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 22:47:37 (GMT) |
commit | 1438c2ac773e87d1f9c97fc22f2346e16bf48773 (patch) | |
tree | 71d6951fede352740b6dd0eba6b2c1c9c67101b1 /Misc/NEWS.d/next | |
parent | f85658a09878c658ae0e0590bfa30e4ce51c9a04 (diff) | |
download | cpython-1438c2ac773e87d1f9c97fc22f2346e16bf48773.zip cpython-1438c2ac773e87d1f9c97fc22f2346e16bf48773.tar.gz cpython-1438c2ac773e87d1f9c97fc22f2346e16bf48773.tar.bz2 |
bpo-41845: Move PyObject_GenericGetDict() back into the limited API (GH22646)
It was moved out of the limited API in 7d95e4072169911b228c9e42367afb5f17fd3db0.
This change re-enables it from 3.10, to avoid generating invalid extension modules for earlier versions.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/C API/2020-10-11-05-05-53.bpo-41845.ZFvuQM.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-10-11-05-05-53.bpo-41845.ZFvuQM.rst b/Misc/NEWS.d/next/C API/2020-10-11-05-05-53.bpo-41845.ZFvuQM.rst new file mode 100644 index 0000000..31d3154 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2020-10-11-05-05-53.bpo-41845.ZFvuQM.rst @@ -0,0 +1,2 @@ +:c:func:`PyObject_GenericGetDict` is available again in the limited API +when targeting 3.10 or later. |