diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index c0b048cb2bd..627c1f77c15 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. + 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. --------------