diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-21 21:15:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-21 21:15:27 (GMT) |
commit | b0338be5d223732ab739877cf10a0f76c389d0c4 (patch) | |
tree | 43fa048c254c612b8a8a67e9256cba3f719c61cf /Doc/whatsnew | |
parent | 52c4a4fb816d51a36c02b043d6fd5eeb875411d6 (diff) | |
download | cpython-b0338be5d223732ab739877cf10a0f76c389d0c4.zip cpython-b0338be5d223732ab739877cf10a0f76c389d0c4.tar.gz cpython-b0338be5d223732ab739877cf10a0f76c389d0c4.tar.bz2 |
Update What's New in Python 3.8 (GH-14253) (GH-14294)
Fix bpo number of PyByteArray_Init removal
(cherry picked from commit c68e3fb15d29607a1af2c19ebec552a87c24cb48)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 6dfe77a..86d092c 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -998,7 +998,7 @@ Build and C API Changes * The :c:func:`PyByteArray_Init` and :c:func:`PyByteArray_Fini` functions have been removed. They did nothing since Python 2.7.4 and Python 3.2.0, were excluded from the limited API (stable ABI), and were not documented. - (Contributed by Victor Stinner in :issue:`32980`.) + (Contributed by Victor Stinner in :issue:`35713`.) * The result of :c:func:`PyExceptionClass_Name` is now of type ``const char *`` rather of ``char *``. |