Update What's New in Python 3.8 (GH-14253) (GH-14294)

Fix bpo number of PyByteArray_Init removal

(cherry picked from commit c68e3fb15d)
This commit is contained in:
Victor Stinner 2019-06-21 23:15:27 +02:00 committed by GitHub
parent 52c4a4fb81
commit b0338be5d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -998,7 +998,7 @@ Build and C API Changes
* The :c:func:`PyByteArray_Init` and :c:func:`PyByteArray_Fini` functions have * 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 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. 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 * The result of :c:func:`PyExceptionClass_Name` is now of type
``const char *`` rather of ``char *``. ``const char *`` rather of ``char *``.