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: Add documentation for typing.Type
Type: Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, gvanrossum, levkivskyi, michael0x2a, python-dev
Priority: normal Keywords: patch

Created on 2016-08-30 21:51 by michael0x2a, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
document-type.patch michael0x2a, 2016-08-30 21:51 review
document-type-v2.patch michael0x2a, 2016-09-06 20:03 review
Messages (5)
msg273974 - (view) Author: Michael Lee (michael0x2a) * Date: 2016-08-30 21:51
This patch adds some documentation for typing.Type[C]. The content itself is mostly an abbreviated version of the description from PEP 484 -- let me know if the patch is too terse or needs more examples.
msg274270 - (view) Author: Ivan Levkivskyi (levkivskyi) * (Python committer) Date: 2016-09-02 20:17
Michael, thank you for helping with this!
Please take a look at my comments on the patch.
msg274616 - (view) Author: Michael Lee (michael0x2a) * Date: 2016-09-06 20:03
Ok, here's version 2, taking into account Ivan's feedback!
msg274747 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-07 04:13
New changeset 9fb30d6af6a9 by Guido van Rossum in branch '3.5':
Issue #27905: Docs for typing.Type[C], by Michael Lee.
https://hg.python.org/cpython/rev/9fb30d6af6a9

New changeset 1705cde6266d by Guido van Rossum in branch 'default':
Issue #27905: Docs for typing.Type[C], by Michael Lee. (Merge 3.5->3.6)
https://hg.python.org/cpython/rev/1705cde6266d
msg274748 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2016-09-07 04:14
Thanks again!  Merged to 3.5 and 3.6 (after cleaning up trailing whitespace -- again ;-).
History
Date User Action Args
2022-04-11 14:58:35adminsetgithub: 72092
2016-09-07 04:14:27gvanrossumsetstatus: open -> closed
resolution: fixed
messages: + msg274748

stage: resolved
2016-09-07 04:13:42python-devsetnosy: + python-dev
messages: + msg274747
2016-09-06 20:03:48michael0x2asetfiles: + document-type-v2.patch

messages: + msg274616
2016-09-02 20:17:03levkivskyisetnosy: + levkivskyi
messages: + msg274270
2016-08-30 21:51:20michael0x2acreate