diff options
author | ram vikram singh <ramvikrams243@gmail.com> | 2023-01-24 09:29:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 09:29:22 (GMT) |
commit | 7f95ec3e7405ea5f44adc3584e297a3191118f32 (patch) | |
tree | ae210c0f81259d13593badc52ee9d09d8c06f178 /Doc | |
parent | e244401ce508ad391295beb636e499fcc6797a2a (diff) | |
download | cpython-7f95ec3e7405ea5f44adc3584e297a3191118f32.zip cpython-7f95ec3e7405ea5f44adc3584e297a3191118f32.tar.gz cpython-7f95ec3e7405ea5f44adc3584e297a3191118f32.tar.bz2 |
gh-101152: Implement PEP 699 (GH-101193)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Co-authored-by: Ken Jin <kenjin@python.org>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 3cab897..2f9ca11 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -430,6 +430,11 @@ Deprecated Before, the Python implementation emitted :exc:`FutureWarning`, and the C implementation emitted nothing. +* In accordance with :pep:`699`, the ``ma_version_tag`` field in :c:type:`PyDictObject` + is deprecated for extension modules. Accessing this field will generate a compiler + warning at compile time. This field will be removed in Python 3.14. + (Contributed by Ramvikrams and Kumar Aditya in :gh:`101193`. PEP by Ken Jin.) + Pending Removal in Python 3.13 ------------------------------ |