[issue40187] Refactor typing.TypedDict

2020-04-08 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40187] Refactor typing.TypedDict

2020-04-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset f228bf2300a9d3bf833b1a89336581822e864ae5 by Serhiy Storchaka in branch 'master': bpo-40187: Refactor typing.TypedDict. (GH-19372) https://github.com/python/cpython/commit/f228bf2300a9d3bf833b1a89336581822e864ae5 -- _

[issue40187] Refactor typing.TypedDict

2020-04-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +18734 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19372 ___ Python tracker ___

[issue40187] Refactor typing.TypedDict

2020-04-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue40185. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40187] Refactor typing.TypedDict

2020-04-04 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : typing.TypedDict is used in two ways. 1. It is a callable which produces a new pseudo-subtype of dict. 2. It can also be used as a base in the class statement for creating a new pseudo-subtype of dict. In both cases it is not a real class. You cannot cre