summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYoSTEALTH <35307184+YoSTEALTH@users.noreply.github.com>2020-07-25 21:42:49 (GMT)
committerGitHub <noreply@github.com>2020-07-25 21:42:49 (GMT)
commit0028c14073109595e7532ec00bb1e8bf39ecfb4d (patch)
treeaacb6132b2dab32ff414664587896df743e5ee86 /Misc
parentdaff39070e7ea71b0ba49d9150ac7a210a125682 (diff)
downloadcpython-0028c14073109595e7532ec00bb1e8bf39ecfb4d.zip
cpython-0028c14073109595e7532ec00bb1e8bf39ecfb4d.tar.gz
cpython-0028c14073109595e7532ec00bb1e8bf39ecfb4d.tar.bz2
bpo-41314: fixed annotations __future__ version (GH-21616)
PEP 563 was updated to change the release where `from __future__ import annotations` becomes the default (and only) behavior from 4.0 to 3.10. Update `__future__.py` and its docs to reflect this.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Documentation/2020-07-25-14-20-00.bpo-41314.yrjko0.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2020-07-25-14-20-00.bpo-41314.yrjko0.rst b/Misc/NEWS.d/next/Documentation/2020-07-25-14-20-00.bpo-41314.yrjko0.rst
new file mode 100644
index 0000000..48f9c93
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2020-07-25-14-20-00.bpo-41314.yrjko0.rst
@@ -0,0 +1 @@
+Changed the release when ``from __future__ import annotations`` becomes the default from ``4.0`` to ``3.10`` (following a change in PEP 563).