diff options
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 129d4d4..81ad4f9 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -128,10 +128,17 @@ Build and C API Changes is now of type ``const char *`` rather of ``char *``. (Contributed by Serhiy Storchaka in :issue:`28769`.) +* Added functions :c:func:`PySlice_Unpack` and :c:func:`PySlice_AdjustIndices`. + (Contributed by Serhiy Storchaka in :issue:`27867`.) + Deprecated ========== +- Function :c:func:`PySlice_GetIndicesEx` is deprecated and replaced with + a macro if ``Py_LIMITED_API`` is not set or set to the value between + ``0x03050400`` and ``0x03060000`` (not including) or ``0x03060100`` or + higher. (Contributed by Serhiy Storchaka in :issue:`27867`.) Removed |