File tree Expand file tree Collapse file tree 3 files changed +0
-16
lines changed Expand file tree Collapse file tree 3 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -325,7 +325,6 @@ The following functions and structs are used to create
325
325
* :c:member: `~PyTypeObject.tp_cache `
326
326
* :c:member: `~PyTypeObject.tp_subclasses `
327
327
* :c:member: `~PyTypeObject.tp_weaklist `
328
- * :c:member: `~PyTypeObject.tp_tp_static_builtin_index `
329
328
* :c:member: `~PyTypeObject.tp_vectorcall `
330
329
* :c:member: `~PyTypeObject.tp_weaklistoffset `
331
330
(see :ref: `PyMemberDef <pymemberdef-offsets >`)
Original file line number Diff line number Diff line change @@ -147,8 +147,6 @@ Quick Reference
147
147
+------------------------------------------------+-----------------------------------+-------------------+---+---+---+---+
148
148
| :c:member: `~PyTypeObject.tp_vectorcall ` | :c:type: `vectorcallfunc ` | | | | | |
149
149
+------------------------------------------------+-----------------------------------+-------------------+---+---+---+---+
150
- | [:c:member: `~PyTypeObject.tp_static_builtin_index `] | size_t | | | | |
151
- +------------------------------------------------+-----------------------------------+-------------------+---+---+---+---+
152
150
153
151
.. [#slots ]
154
152
A slot name in parentheses indicates it is (effectively) deprecated.
@@ -2030,17 +2028,6 @@ and :c:type:`PyType_Type` effectively act as defaults.)
2030
2028
2031
2029
.. versionadded :: 3.9 (the field exists since 3.8 but it's only used since 3.9)
2032
2030
2033
- .. c :member :: PyObject* PyTypeObject.tp_static_builtin_index
2034
-
2035
- A static builtin type's index into the per-interpreter array of type state.
2036
- Internal use only.
2037
-
2038
- **Inheritance: **
2039
-
2040
- This field is not inherited.
2041
-
2042
- .. versionadded :: 3.12
2043
-
2044
2031
2045
2032
.. _static-types :
2046
2033
Original file line number Diff line number Diff line change @@ -80,6 +80,4 @@ typedef struct _typeobject {
80
80
81
81
destructor tp_finalize ;
82
82
vectorcallfunc tp_vectorcall ;
83
-
84
- size_t tp_static_builtin_index ;
85
83
} PyTypeObject ;
You can’t perform that action at this time.
0 commit comments