From: Guido van Rossum Date: Fri, 11 Nov 2016 23:57:09 +0000 (-0800) Subject: Issue 28644: Document recent changes in typing.py (Ivan L) (3.5->3.6) X-Git-Tag: v3.6.0b4~98 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d6c17936e426fd1417494fc5f0dcce548aad885;p=thirdparty%2FPython%2Fcpython.git Issue 28644: Document recent changes in typing.py (Ivan L) (3.5->3.6) --- 2d6c17936e426fd1417494fc5f0dcce548aad885 diff --cc Doc/library/typing.rst index a0666fed39ac,dde705e680ca..16e7b83250be --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@@ -10,8 -10,8 +10,8 @@@ -------------- -This module supports type hints as specified by :pep:`484`. The most -fundamental support consists of the types :data:`Any`, :data:`Union`, +This module supports type hints as specified by :pep:`484` and :pep:`526`. - The most fundamental support consists of the type :data:`Any`, :data:`Union`, ++The most fundamental support consists of the types :data:`Any`, :data:`Union`, :data:`Tuple`, :data:`Callable`, :class:`TypeVar`, and :class:`Generic`. For full specification please see :pep:`484`. For a simplified introduction to type hints see :pep:`483`.