[issue27905] Add documentation for typing.Type

2016-09-06 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks again! Merged to 3.5 and 3.6 (after cleaning up trailing whitespace -- again ;-). -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue27905] Add documentation for typing.Type

2016-09-06 Thread Roundup Robot
Roundup Robot added the comment: 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

[issue27905] Add documentation for typing.Type

2016-09-06 Thread Michael Lee
Michael Lee added the comment: Ok, here's version 2, taking into account Ivan's feedback! -- Added file: http://bugs.python.org/file44401/document-type-v2.patch ___ Python tracker

[issue27905] Add documentation for typing.Type

2016-09-02 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Michael, thank you for helping with this! Please take a look at my comments on the patch. -- nosy: +levkivskyi ___ Python tracker

[issue27905] Add documentation for typing.Type

2016-08-30 Thread Michael Lee
New submission from Michael Lee: 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. -- assignee: docs@python components: