]> granicus.if.org Git - python/commitdiff
Update What's New in Python 3.9 (GH-14253)
authorVictor Stinner <vstinner@redhat.com>
Thu, 20 Jun 2019 20:41:25 +0000 (22:41 +0200)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 20 Jun 2019 20:41:25 +0000 (13:41 -0700)
* Mention bpo of PyImport_Cleanup removal
* Fix bpo number of PyByteArray_Init removal

Doc/whatsnew/3.8.rst
Doc/whatsnew/3.9.rst

index ede1ccbeeedb8603fc45580e49c96e2efb8eeb89..d3db94590dcc9071b99b88ad7262cc313b66ed29 100644 (file)
@@ -1001,7 +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`.)
+  (Contributed by Victor Stinner in :issue:`35713`.)
 
 * The result of :c:func:`PyExceptionClass_Name` is now of type
   ``const char *`` rather of ``char *``.
index 24fbe1870c87e22fece1be3e82ad20f91063997a..b625f271d128f8658c41852638ea2f1e19a5e304 100644 (file)
@@ -124,6 +124,7 @@ Removed
 
 * The C function ``PyImport_Cleanup()`` has been removed. It was documented as:
   "Empty the module table.  For internal use only."
+  (Contributed by Victor Stinner in :issue:`36710`.)
 
 * ``_dummy_thread`` and ``dummy_threading`` modules have been removed. These
   modules were deprecated since Python 3.7 which requires threading support.