summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorram vikram singh <ramvikrams243@gmail.com>2023-01-24 09:29:22 (GMT)
committerGitHub <noreply@github.com>2023-01-24 09:29:22 (GMT)
commit7f95ec3e7405ea5f44adc3584e297a3191118f32 (patch)
treeae210c0f81259d13593badc52ee9d09d8c06f178 /Doc
parente244401ce508ad391295beb636e499fcc6797a2a (diff)
downloadcpython-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.rst5
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
------------------------------