Message404125
>>> 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? |
|
Date |
User |
Action |
Args |
2021-10-17 04:50:55 | Crowthebird | set | recipients:
+ Crowthebird |
2021-10-17 04:50:55 | Crowthebird | set | messageid: <1634446255.85.0.0444213933031.issue45499@roundup.psfhosted.org> |
2021-10-17 04:50:55 | Crowthebird | link | issue45499 messages |
2021-10-17 04:50:55 | Crowthebird | create | |
|