[issue31564] NewType can subclass NewType

2017-09-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks Terji! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue31564] NewType can subclass NewType

2017-09-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 018e6b9f696311a65f47f33ea04b7baef3f3664f by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31564: Update typing documentation (GH-3696) (GH-3715) https://github.com/python/cpython/commit/018e6b9f696311a65f47f33ea04b7baef3f3664f

[issue31564] NewType can subclass NewType

2017-09-23 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +3700 ___ Python tracker ___

[issue31564] NewType can subclass NewType

2017-09-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 039b25d8fd21f8d5d9e3cb536402d952cf068dc1 by Mariatta (topper-123) in branch 'master': bpo-31564: Update typing documentation (GH-3696) https://github.com/python/cpython/commit/039b25d8fd21f8d5d9e3cb536402d952cf068dc1 -- nosy: +Mariatta

[issue31564] NewType can subclass NewType

2017-09-23 Thread Roundup Robot
Changes by Roundup Robot : -- keywords: +patch pull_requests: +3698 stage: -> patch review ___ Python tracker ___

[issue31564] NewType can subclass NewType

2017-09-23 Thread Terji
New submission from Terji: It has become possible to create a ``NewType`` from an existing ``NewType``, see https://github.com/python/mypy/pull/3465 and https://github.com/python/peps/pull/271. This is a small update to the documentation as a concequence of the above change. --