diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 9181685736575d..cf3954dba6ec96 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -1035,7 +1035,8 @@ New Features * If Python is built in :ref:`debug mode ` or :option:`with assertions <--with-assertions>`, :c:func:`PyTuple_SET_ITEM` and :c:func:`PyList_SET_ITEM` now check the index argument with an assertion. - If the assertion fails, make sure that the size is set before. + If the assertion fails in :c:func:`PyTuple_SET_ITEM`, make sure that the + tuple size is set before. (Contributed by Victor Stinner in :gh:`106168`.) * Add :c:func:`PyModule_Add` function: similar to