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 Corfucinas
Recipients Corfucinas
Date 2022-01-28.13:36:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643376969.17.0.119723519052.issue46562@roundup.psfhosted.org>
In-reply-to
Content
Currently, the addition of Annotated in PEP 593 on Python 3.9 allows adding arbitrary metadata for type hints.

Let's consider the following

time_available_online: list[str] =
[
'1m',
'5m',
'1d'
]


```
Hour = Annotated(str, "time available online")

```

Another way to consider this is if the selection was an Enum, since we know the only available options that can be selected (ie. it is not all possible 'str', only the 'str' from a list, which can be defined by the user)

It would save time and simplify things if the following was possible.

---

from typing import Enum  # we save time by not making a duplicate Class, or converting a constant variable to a Class


```
Hour = Enum[time_available_online, "time available online"]
```
History
Date User Action Args
2022-01-28 13:36:09Corfucinassetrecipients: + Corfucinas
2022-01-28 13:36:09Corfucinassetmessageid: <1643376969.17.0.119723519052.issue46562@roundup.psfhosted.org>
2022-01-28 13:36:09Corfucinaslinkissue46562 messages
2022-01-28 13:36:09Corfucinascreate