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

Miss Islington (bot) webhook-mailer at python.org
Wed Jun 19 19:52:51 EDT 2019


https://github.com/python/cpython/commit/67cf0ae78a9865bbaf9879778e80c398b6e3ece2
commit: 67cf0ae78a9865bbaf9879778e80c398b6e3ece2
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-06-19T16:52:47-07:00
summary:

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 af41c567af81de7c4408e2e2617f1d3747408434)

Co-authored-by: Victor Stinner <vstinner at redhat.com>

files:
M Doc/whatsnew/3.8.rst

diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index d79bc03860c1..6dfe77ac8a46 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -973,7 +973,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
@@ -998,6 +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`.)
 
 * The result of :c:func:`PyExceptionClass_Name` is now of type
   ``const char *`` rather of ``char *``.



More information about the Python-checkins mailing list