summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2024-06-19 16:38:45 (GMT)
committerGitHub <noreply@github.com>2024-06-19 16:38:45 (GMT)
commit00257c746c447a2e026b5a2a618f0e033fb90111 (patch)
tree7e30b04574aa0886d5bba242d4002840e2ad9e32 /Misc/NEWS.d
parentf385d99f57773e48285e0bcdbcd66dcbfdc647b3 (diff)
downloadcpython-00257c746c447a2e026b5a2a618f0e033fb90111.zip
cpython-00257c746c447a2e026b5a2a618f0e033fb90111.tar.gz
cpython-00257c746c447a2e026b5a2a618f0e033fb90111.tar.bz2
GH-119462: Enforce invariants of type versioning (GH-120731)
* Remove uses of Py_TPFLAGS_VALID_VERSION_TAG
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2024-06-19-11-10-50.gh-issue-119462.DpcqSe.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-19-11-10-50.gh-issue-119462.DpcqSe.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-19-11-10-50.gh-issue-119462.DpcqSe.rst
new file mode 100644
index 0000000..7a3b74b
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-19-11-10-50.gh-issue-119462.DpcqSe.rst
@@ -0,0 +1,4 @@
+Make sure that invariants of type versioning are maintained:
+* Superclasses always have their version number assigned before subclasses
+* The version tag is always zero if the tag is not valid.
+* The version tag is always non-if the tag is valid.