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

* Mention issue in which ByByteArray_Init() has been removed.
* Fix typo
This commit is contained in:
Victor Stinner 2019-06-20 01:44:58 +02:00 committed by GitHub
parent b45d259bdd
commit af41c567af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1001,6 +1001,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`.)
* 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 *``.