File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,8 @@ Quick Reference
147147 +------------------------------------------------+-----------------------------------+-------------------+---+---+---+---+
148148 | :c:member: `~PyTypeObject.tp_vectorcall ` | :c:type: `vectorcallfunc ` | | | | | |
149149 +------------------------------------------------+-----------------------------------+-------------------+---+---+---+---+
150+ | [:c:member: `~PyTypeObject.tp_iteritem `] | opaque function pointer | | | | | |
151+ +------------------------------------------------+-----------------------------------+-------------------+---+---+---+---+
150152 | [:c:member: `~PyTypeObject.tp_watched `] | unsigned char | | | | | |
151153 +------------------------------------------------+-----------------------------------+-------------------+---+---+---+---+
152154
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ struct _typeobject {
229229
230230 destructor tp_finalize ;
231231 vectorcallfunc tp_vectorcall ;
232- iteritemfunc tp_iteritem ;
232+ iteritemfunc tp_iteritem ; /* Virtual iterator next function */
233233
234234
235235 /* bitset of which type-watchers care about this type */
You can’t perform that action at this time.
0 commit comments