diff options
author | Mark Shannon <mark@hotpy.org> | 2024-06-20 14:09:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 14:09:32 (GMT) |
commit | b8fd80f91b980598cb378dba224cdb595b132fb4 (patch) | |
tree | 0a6ad47a84ca82f94cefeb2a8a5f4d5edb654458 /Doc | |
parent | d0a5e40f01c9e05100fb2548613805653fb71864 (diff) | |
download | cpython-b8fd80f91b980598cb378dba224cdb595b132fb4.zip cpython-b8fd80f91b980598cb378dba224cdb595b132fb4.tar.gz cpython-b8fd80f91b980598cb378dba224cdb595b132fb4.tar.bz2 |
[3.13] GH-119462: Enforce invariants of type versioning. Backport of GH-120731. (#120748)
* Remove uses of Py_TPFLAGS_VALID_VERSION_TAG
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/typeobj.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index a6a2c43..c9ef076 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -1328,8 +1328,8 @@ and :c:data:`PyType_Type` effectively act as defaults.) To indicate that a class has changed call :c:func:`PyType_Modified` .. warning:: - This flag is present in header files, but is an internal feature and should - not be used. It will be removed in a future version of CPython + This flag is present in header files, but is not be used. + It will be removed in a future version of CPython .. c:member:: const char* PyTypeObject.tp_doc |