We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03643cf commit 0d8974eCopy full SHA for 0d8974e
Doc/whatsnew/3.13.rst
@@ -1872,6 +1872,10 @@ Porting to Python 3.13
1872
platforms, the ``HAVE_STDDEF_H`` macro is only defined on Windows.
1873
(Contributed by Victor Stinner in :gh:`108765`.)
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
+
1879
Deprecated
1880
----------
1881
Include/internal/pycore_list.h
@@ -55,6 +55,7 @@ typedef struct {
55
} _PyListIterObject;
56
57
PyAPI_FUNC(PyObject *)_PyList_FromArraySteal(PyObject *const *src, Py_ssize_t n);
58
59
/* Creates tuple from the list, leaving the list empty */
60
PyObject *_PyList_AsTupleTakeItems(PyObject *);
61
0 commit comments