diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-20 20:41:25 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-20 20:41:25 (GMT) |
commit | c68e3fb15d29607a1af2c19ebec552a87c24cb48 (patch) | |
tree | cab232a57fb4d9979dbb04418b5542cdea3a9b6b /Doc/whatsnew | |
parent | a1952122a3a20272e4db9e3c6205009a91c73ccf (diff) | |
download | cpython-c68e3fb15d29607a1af2c19ebec552a87c24cb48.zip cpython-c68e3fb15d29607a1af2c19ebec552a87c24cb48.tar.gz cpython-c68e3fb15d29607a1af2c19ebec552a87c24cb48.tar.bz2 |
Update What's New in Python 3.9 (GH-14253)
* Mention bpo of PyImport_Cleanup removal
* Fix bpo number of PyByteArray_Init removal
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.9.rst | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index ede1ccb..d3db945 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -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 *``. diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 24fbe18..b625f27 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -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. |