This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Crowthebird
Recipients Crowthebird
Date 2021-10-17.04:50:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634446255.85.0.0444213933031.issue45499@roundup.psfhosted.org>
In-reply-to
Content
>>> import sys
>>> import __future__
>>> __future__.annotations
_Feature((3, 7, 0, 'beta', 1), (3, 11, 0, 'alpha', 0), 16777216)
>>> sys.version_info
sys.version_info(major=3, minor=11, micro=0, releaselevel='alpha', serial=1)
>>> sys.version_info > __future__.annotations.mandatory
True
>>> sys.version_info >= __future__.annotations.mandatory
True

Why is it still not automatically inside python 3.11.0a1?
History
Date User Action Args
2021-10-17 04:50:55Crowthebirdsetrecipients: + Crowthebird
2021-10-17 04:50:55Crowthebirdsetmessageid: <1634446255.85.0.0444213933031.issue45499@roundup.psfhosted.org>
2021-10-17 04:50:55Crowthebirdlinkissue45499 messages
2021-10-17 04:50:55Crowthebirdcreate