diff options
author | Saiyang Gou <gousaiyang@163.com> | 2021-04-25 19:49:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-25 19:49:26 (GMT) |
commit | f84f1b5c638eeb6e13c287fe5ebf3a7d2fdb60e9 (patch) | |
tree | 3d33a4d21635f5563af6e31d622f1aaceb8bcf1d | |
parent | a31cf86bc2d9c0738b2a0251af766d6b247683fc (diff) | |
download | cpython-f84f1b5c638eeb6e13c287fe5ebf3a7d2fdb60e9.zip cpython-f84f1b5c638eeb6e13c287fe5ebf3a7d2fdb60e9.tar.gz cpython-f84f1b5c638eeb6e13c287fe5ebf3a7d2fdb60e9.tar.bz2 |
bpo-38605: Update __future__ module doc as `annotations` is now "mandatory in 3.11" (GH-25602)
-rw-r--r-- | Doc/library/__future__.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/__future__.rst b/Doc/library/__future__.rst index 4139994..24bbd90 100644 --- a/Doc/library/__future__.rst +++ b/Doc/library/__future__.rst @@ -90,7 +90,7 @@ language using this mechanism: | generator_stop | 3.5.0b1 | 3.7 | :pep:`479`: | | | | | *StopIteration handling inside generators* | +------------------+-------------+--------------+---------------------------------------------+ -| annotations | 3.7.0b1 | 3.10 | :pep:`563`: | +| annotations | 3.7.0b1 | 3.11 | :pep:`563`: | | | | | *Postponed evaluation of annotations* | +------------------+-------------+--------------+---------------------------------------------+ |