Skip to content

Commit ecfd2d3

Browse files
authored
GH-99293: Document that Py_TPFLAGS_VALID_VERSION_TAG shouldn't be used. (#GH-101736)
Document that Py_TPFLAGS_VALID_VERSION_TAG shouldn't be used.
1 parent 1c49e61 commit ecfd2d3

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Doc/c-api/typeobj.rst

+10
Original file line numberDiff line numberDiff line change
@@ -1313,6 +1313,16 @@ and :c:type:`PyType_Type` effectively act as defaults.)
13131313
.. versionadded:: 3.10
13141314

13151315

1316+
.. data:: Py_TPFLAGS_VALID_VERSION_TAG
1317+
1318+
Internal. Do not set or unset this flag.
1319+
To indicate that a class has changed call :c:func:`PyType_Modified`
1320+
1321+
.. warning::
1322+
This flag is present in header files, but is an internal feature and should
1323+
not be used. It will be removed in a future version of CPython
1324+
1325+
13161326
.. c:member:: const char* PyTypeObject.tp_doc
13171327
13181328
An optional pointer to a NUL-terminated C string giving the docstring for this
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Document that the Py_TPFLAGS_VALID_VERSION_TAG is an internal feature,
2+
should not be used, and will be removed.

0 commit comments

Comments
 (0)