From 18898931b3c203007dc65c62ad0f0c1bd5a5336a Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Fri, 1 May 2020 16:21:55 +0100 Subject: [PATCH] bpo-39562: Correctly updated the version section in the what's new document --- Doc/whatsnew/3.8.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index dca7f48979e16c..d2db5bff5afcf5 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``.