diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-05-01 15:36:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-01 15:36:51 (GMT) |
commit | 71e6122b4428ae43e868e34db4f072635f58a555 (patch) | |
tree | 531853583b986e9dc3a58e9126eb058eebb6a21c | |
parent | 5055c274c6e4f2bb8025910dedf0ff89f4bdd170 (diff) | |
download | cpython-71e6122b4428ae43e868e34db4f072635f58a555.zip cpython-71e6122b4428ae43e868e34db4f072635f58a555.tar.gz cpython-71e6122b4428ae43e868e34db4f072635f58a555.tar.bz2 |
bpo-39562: Correctly updated the version section in the what's new document (GH-19838)
-rw-r--r-- | Doc/whatsnew/3.8.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index dca7f48..d2db5bf 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -2235,6 +2235,9 @@ Fixed a regression with the ``ignore`` callback of :func:`shutil.copytree`. The argument types are now str and List[str] again. (Contributed by Manuel Barkhau and Giampaolo Rodola in :issue:`39390`.) +Notable changes in Python 3.8.3 +=============================== + The constant values of future flags in the :mod:`__future__` module are updated in order to prevent collision with compiler flags. Previously ``PyCF_ALLOW_TOP_LEVEL_AWAIT`` was clashing with ``CO_FUTURE_DIVISION``. |