Message369141
$ python3.8
Python 3.8.0+ (heads/3.8:b9e5547f58, Nov 28 2019, 19:18:03)
[GCC 9.2.1 20191008] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from __future__ import annotations
>>> b: Type[(int, str, *types)]
>>> __annotations__
{'b': 'Type[int, str, *types]'}
$ python3.7
Python 3.7.5 (default, Apr 19 2020, 20:18:17)
[GCC 9.2.1 20191008] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from __future__ import annotations
>>> b: Type[(int, str, *types)]
>>> __annotations__
{'b': 'Type[int, str, *types]'}
>>> |
|
Date |
User |
Action |
Args |
2020-05-17 17:41:52 | BTaskaya | set | recipients:
+ BTaskaya |
2020-05-17 17:41:52 | BTaskaya | set | messageid: <1589737312.09.0.398613782576.issue40663@roundup.psfhosted.org> |
2020-05-17 17:41:52 | BTaskaya | link | issue40663 messages |
2020-05-17 17:41:52 | BTaskaya | create | |
|