diff options
author | Anthony Sottile <asottile@umich.edu> | 2021-04-25 16:09:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-25 16:09:24 (GMT) |
commit | c9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac (patch) | |
tree | df7d17220493e454bd1a9fe35f3330fd798804cd | |
parent | 8af929fc76f21fb123f6a47cb3ebcf4e5b758dea (diff) | |
download | cpython-c9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac.zip cpython-c9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac.tar.gz cpython-c9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac.tar.bz2 |
Set the release for `__future__.annotations` to 3.11 (#25596)
-rw-r--r-- | Lib/__future__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py index 326e2b2..97dc90c 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -143,5 +143,5 @@ generator_stop = _Feature((3, 5, 0, "beta", 1), CO_FUTURE_GENERATOR_STOP) annotations = _Feature((3, 7, 0, "beta", 1), - (3, 10, 0, "alpha", 0), + (3, 11, 0, "alpha", 0), CO_FUTURE_ANNOTATIONS) |