File tree 1 file changed +6
-2
lines changed 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,16 @@ New functions
28
28
29
29
* ``PyTuple_GetItemRef() ``: similar to ``PyTuple_GetItem() `` but returns a
30
30
strong reference, rather than a borrowed reference
31
+ * ``PyList_GetItemRef() ``: similar to ``PyList_GetItem() `` but returns a
32
+ strong reference, rather than a borrowed reference
31
33
* ``PyTuple_SetItemRef() ``: similar to ``PyTuple_SetItem() `` but uses a strong
32
34
reference on the item
35
+ * ``PySequence_Fast_GetItemRef() ``
36
+ * ``PyStructSequence_SetItemRef() ``
33
37
34
38
XXX private functions:
35
39
36
- * ``_Py_SET_TYPE() ``: see :ref: `Implement a PyTypeObject in C <impl-pytype >`_
40
+ * ``_Py_SET_TYPE() ``: see :ref: `Implement a PyTypeObject in C <impl-pytype >`
37
41
* ``_Py_SET_SIZE() ``
38
42
39
43
Non-goal
@@ -92,7 +96,7 @@ as l-value::
92
96
93
97
XXX in the current implementation, ``_Py_SET_SIZE() `` and ``_Py_SET_TYPE() ``
94
98
macros have been added for such use case. For the type, see also
95
- :ref: `Implement a PyTypeObject in C <impl-pytype >`_ .
99
+ :ref: `Implement a PyTypeObject in C <impl-pytype >`.
96
100
97
101
98
102
.. _incref :
You can’t perform that action at this time.
0 commit comments