summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-05-08 12:20:48 (GMT)
committerGitHub <noreply@github.com>2021-05-08 12:20:48 (GMT)
commit90d584a2ab91cc0f30e90a0a99f8c1447eb51302 (patch)
tree4692611ace514d252a56463df9c47f1148db40d3
parent6e7fe1901631dc730abc02d1f546a99fd6b6fe83 (diff)
downloadcpython-90d584a2ab91cc0f30e90a0a99f8c1447eb51302.zip
cpython-90d584a2ab91cc0f30e90a0a99f8c1447eb51302.tar.gz
cpython-90d584a2ab91cc0f30e90a0a99f8c1447eb51302.tar.bz2
bpo-42725: mention the changes on what's new (GH-25974)
(cherry picked from commit 17229ab4a2fd5db20d52ef0f3aca2a8b51869c43) Co-authored-by: Batuhan Taskaya <isidentical@gmail.com>
-rw-r--r--Doc/whatsnew/3.10.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index b6166f7..cfc560e 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
===========