Skip to content

Commit 67cf0ae

Browse files
Update What's New in Python 3.8 (GH-14239)
* Mention issue in which ByByteArray_Init() has been removed. * Fix typo (cherry picked from commit af41c56) Co-authored-by: Victor Stinner <vstinner@redhat.com>
1 parent 444c78a commit 67cf0ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Doc/whatsnew/3.8.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ Build and C API Changes
973973

974974
* ``Include/*.h`` should be the portable public stable C API.
975975
* ``Include/cpython/*.h`` should be the unstable C API specific to CPython;
976-
public API, with some private API prefixed by ``_Py`` or ``_PY``.
976+
public API, with some private API prefixed by ``_Py`` or ``_PY``.
977977
* ``Include/internal/*.h`` is the private internal C API very specific to
978978
CPython. This API comes with no backward compatibility warranty and should
979979
not be used outside CPython. It is only exposed for very specific needs
@@ -998,6 +998,7 @@ Build and C API Changes
998998
* The :c:func:`PyByteArray_Init` and :c:func:`PyByteArray_Fini` functions have
999999
been removed. They did nothing since Python 2.7.4 and Python 3.2.0, were
10001000
excluded from the limited API (stable ABI), and were not documented.
1001+
(Contributed by Victor Stinner in :issue:`32980`.)
10011002

10021003
* The result of :c:func:`PyExceptionClass_Name` is now of type
10031004
``const char *`` rather of ``char *``.

0 commit comments

Comments
 (0)