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 BTaskaya
Recipients BTaskaya
Date 2020-05-17.17:41:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589737312.09.0.398613782576.issue40663@roundup.psfhosted.org>
In-reply-to
Content
$ 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]'}
>>>
History
Date User Action Args
2020-05-17 17:41:52BTaskayasetrecipients: + BTaskaya
2020-05-17 17:41:52BTaskayasetmessageid: <1589737312.09.0.398613782576.issue40663@roundup.psfhosted.org>
2020-05-17 17:41:52BTaskayalinkissue40663 messages
2020-05-17 17:41:52BTaskayacreate