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: Update documentation for typing module
Type: Stage:
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, python-dev
Priority: normal Keywords: patch

Created on 2016-10-07 23:56 by levkivskyi, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
doc-typing-patch.diff levkivskyi, 2016-10-07 23:56 review
Messages (4)
msg278283 - (view) Author: Ivan Levkivskyi (levkivskyi) * (Python committer) Date: 2016-10-07 23:56
Here is the patch with updates according to recent changes in typing module and PEP 484:

- most things are not classes now
- outcome of parameterizing generics is cached
- Union does not unify everything with Any
- few minor fixes

This patch also fixes http://bugs.python.org/issue27588

The attached patch is generated for 3.5
msg278332 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2016-10-09 03:05
LGTM. I have a small number of nits that I will apply when merging this.
msg278335 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-10-09 03:10
New changeset 9953efbb4974 by Guido van Rossum in branch '3.5':
Issue #28388: update typing module documentation.
https://hg.python.org/cpython/rev/9953efbb4974

New changeset 589e11c3489e by Guido van Rossum in branch '3.6':
Issue #28388: update typing module documentation. (merge 3.5->3.6)
https://hg.python.org/cpython/rev/589e11c3489e

New changeset 6cb9dfe4cbeb by Guido van Rossum in branch 'default':
Issue #28388: update typing module documentation. (merge 3.6->3.7)
https://hg.python.org/cpython/rev/6cb9dfe4cbeb
msg278336 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-10-09 03:14
New changeset d7f2b0332343 by Guido van Rossum in branch '3.5':
Adjust ClassVar example to use pre-PEP-526 syntax. (Issue #28388)
https://hg.python.org/cpython/rev/d7f2b0332343
History
Date User Action Args
2022-04-11 14:58:38adminsetgithub: 72574
2016-10-09 03:14:13python-devsetmessages: + msg278336
2016-10-09 03:10:59gvanrossumsetstatus: open -> closed
resolution: fixed
2016-10-09 03:10:38python-devsetnosy: + python-dev
messages: + msg278335
2016-10-09 03:05:31gvanrossumsetmessages: + msg278332
2016-10-07 23:56:50levkivskyicreate