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.

classification
Title: NewType can subclass NewType
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Mariatta, Petersen, docs@python
Priority: normal Keywords: patch

Created on 2017-09-23 21:35 by Petersen, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 3696 merged python-dev, 2017-09-23 21:38
PR 3715 merged python-dev, 2017-09-24 02:38
Messages (4)
msg302809 - (view) Author: Terji (Petersen) * Date: 2017-09-23 21:35
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.
msg302825 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-09-24 02:37
New changeset 039b25d8fd21f8d5d9e3cb536402d952cf068dc1 by Mariatta (topper-123) in branch 'master':
bpo-31564: Update typing documentation (GH-3696)
https://github.com/python/cpython/commit/039b25d8fd21f8d5d9e3cb536402d952cf068dc1
msg302826 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-09-24 02:46
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
msg302827 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-09-24 02:47
Thanks Terji!
History
Date User Action Args
2022-04-11 14:58:52adminsetgithub: 75745
2017-09-24 02:47:13Mariattasetstatus: open -> closed
resolution: fixed
messages: + msg302827

stage: patch review -> resolved
2017-09-24 02:46:26Mariattasetmessages: + msg302826
2017-09-24 02:38:02python-devsetpull_requests: + pull_request3700
2017-09-24 02:37:50Mariattasetnosy: + Mariatta
messages: + msg302825
2017-09-23 21:38:29python-devsetkeywords: + patch
stage: patch review
pull_requests: + pull_request3698
2017-09-23 21:35:05Petersencreate