From a73aef9e2942af14e507f9cc0e41bc5de9916f16 Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Mon, 16 Sep 2019 22:38:22 +0100 Subject: [PATCH 1/2] Update the opening note in typing docs --- Doc/library/typing.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 12efde1316570f..2991a087057110 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -10,10 +10,9 @@ .. note:: - The typing module has been included in the standard library on a - :term:`provisional basis `. New features might - be added and API may change even between minor releases if deemed - necessary by the core developers. + Python runtime does not enforce the function and variable type annotations. + They can be used by third party tools such as type checkers, IDEs, linters, + etc. -------------- From f479d0d27267ba3b68c596c88e1fcf92d19f072c Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Mon, 16 Sep 2019 22:55:38 +0100 Subject: [PATCH 2/2] Address CR --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 2991a087057110..f4d1b2404328dd 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -10,7 +10,7 @@ .. note:: - Python runtime does not enforce the function and variable type annotations. + The Python runtime does not enforce function and variable type annotations. They can be used by third party tools such as type checkers, IDEs, linters, etc.