diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-19 23:44:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-19 23:44:58 (GMT) |
commit | af41c567af81de7c4408e2e2617f1d3747408434 (patch) | |
tree | ea031d99246cb8fd114f9f67596231b6a064c4ee | |
parent | b45d259bdda1de2b2d369458a9ad2e4d6f750687 (diff) | |
download | cpython-af41c567af81de7c4408e2e2617f1d3747408434.zip cpython-af41c567af81de7c4408e2e2617f1d3747408434.tar.gz cpython-af41c567af81de7c4408e2e2617f1d3747408434.tar.bz2 |
Update What's New in Python 3.8 (GH-14239)
* Mention issue in which ByByteArray_Init() has been removed.
* Fix typo
-rw-r--r-- | Doc/whatsnew/3.8.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index e4218ca..ede1ccb 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -976,7 +976,7 @@ Build and C API Changes * ``Include/*.h`` should be the portable public stable C API. * ``Include/cpython/*.h`` should be the unstable C API specific to CPython; - public API, with some private API prefixed by ``_Py`` or ``_PY``. + public API, with some private API prefixed by ``_Py`` or ``_PY``. * ``Include/internal/*.h`` is the private internal C API very specific to CPython. This API comes with no backward compatibility warranty and should not be used outside CPython. It is only exposed for very specific needs @@ -1001,6 +1001,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`.) * The result of :c:func:`PyExceptionClass_Name` is now of type ``const char *`` rather of ``char *``. |