[issue45662] Incorrect repr of InitVar of a type alias

2021-12-10 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45662] Incorrect repr of InitVar of a type alias

2021-12-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset fb8aad16401e081a6a9059c7b428f7e8aae85d58 by Miss Islington (bot) in branch '3.9': [3.9] bpo-45662: Fix the repr of InitVar with a type alias to the built-in class (GH-29291) (GH-29924)

[issue45662] Incorrect repr of InitVar of a type alias

2021-12-05 Thread miss-islington
miss-islington added the comment: New changeset f1dd5ed1f35a7ed5c3833c822e9965de2400d77e by Miss Islington (bot) in branch '3.10': bpo-45662: Fix the repr of InitVar with a type alias to the built-in class (GH-29291)

[issue45662] Incorrect repr of InitVar of a type alias

2021-12-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +28148 pull_request: https://github.com/python/cpython/pull/29924 ___ Python tracker ___

[issue45662] Incorrect repr of InitVar of a type alias

2021-12-05 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +28147 pull_request: https://github.com/python/cpython/pull/29923 ___ Python tracker

[issue45662] Incorrect repr of InitVar of a type alias

2021-12-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 1fd4de5bddbbf2a97cdbac4d298c89e1156bdc6c by Serhiy Storchaka in branch 'main': bpo-45662: Fix the repr of InitVar with a type alias to the built-in class (GH-29291)

[issue45662] Incorrect repr of InitVar of a type alias

2021-10-28 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +27554 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29291 ___ Python tracker

[issue45662] Incorrect repr of InitVar of a type alias

2021-10-28 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : The repr of InitVar preserves type aliases from the typing module, but not builtin. >>> import typing, dataclasses >>> dataclasses.InitVar[typing.List[int]] dataclasses.InitVar[typing.List[int]] >>> dataclasses.InitVar[list[int]]