File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -1872,6 +1872,10 @@ Porting to Python 3.13
1872
1872
platforms, the ``HAVE_STDDEF_H `` macro is only defined on Windows.
1873
1873
(Contributed by Victor Stinner in :gh: `108765 `.)
1874
1874
1875
+ * The :c: func`PyTuple_SET_ITEM` inline function may not be passed ``NULL ``.
1876
+ This has always been the documented behavior, but was not enforced for
1877
+ the value until now.
1878
+
1875
1879
Deprecated
1876
1880
----------
1877
1881
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ typedef struct {
55
55
} _PyListIterObject ;
56
56
57
57
PyAPI_FUNC (PyObject * )_PyList_FromArraySteal (PyObject * const * src , Py_ssize_t n );
58
+
58
59
/* Creates tuple from the list, leaving the list empty */
59
60
PyObject * _PyList_AsTupleTakeItems (PyObject * );
60
61
You can’t perform that action at this time.
0 commit comments