Message397624
>>> import typing
>>> T = typing.TypeVar('T')
>>> (int | T)[typing.Union[str, list]]
NotImplemented
See also issue44633. But in this case the expected result is int | str | list or typing.Union[init, str, list]. |
|
| Date |
User |
Action |
Args |
| 2021-07-16 13:32:27 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, gvanrossum, kj |
| 2021-07-16 13:32:27 | serhiy.storchaka | set | messageid: <[email protected]> |
| 2021-07-16 13:32:27 | serhiy.storchaka | link | issue44653 messages |
| 2021-07-16 13:32:27 | serhiy.storchaka | create | |
|