From: Batuhan Taskaya Date: Sat, 8 May 2021 11:49:40 +0000 (+0300) Subject: bpo-42725: mention the changes on what's new (GH-25974) X-Git-Tag: v3.11.0a1~1173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17229ab4a2fd5db20d52ef0f3aca2a8b51869c43;p=thirdparty%2FPython%2Fcpython.git bpo-42725: mention the changes on what's new (GH-25974) --- diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index b6166f7acdb0..cfc560e1f443 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -812,6 +812,16 @@ Other Language Changes :ref:`annotations-howto`. (Contributed by Larry Hastings in :issue:`43901`.) +* Annotations consist of ``yield``, ``yield from``, ``await`` or named expressions + are now forbidden under ``from __future__ import annotations`` due to their side + effects. + (Contributed by Batuhan Taskaya in :issue:`42725`.) + +* Usage of unbound variables, ``super()`` and other expressions that might + alter the processing of symbol table as annotations are now rendered + effectless under ``from __future__ import annotations``. + (Contributed by Batuhan Taskaya in :issue:`42725`.) + New Modules ===========