bpo-28556: Update the opening note in typing docs (GH-16204)

This PR replaces the old note mentioning that `typing` is a provisional module with a new one mentioning types are not enforced at runtime. I am not sure if there was any official announcement about making `typing` non-provisional, but _de-facto_ no new features were added during Python 3.7, and no backwards incompatible changes were made except for few small things that were considered bugs.
This commit is contained in:
Ivan Levkivskyi 2019-09-16 23:04:06 +01:00 committed by GitHub
parent 724f1a5723
commit 81528ba2e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -10,10 +10,9 @@
.. note:: .. note::
The typing module has been included in the standard library on a The Python runtime does not enforce function and variable type annotations.
:term:`provisional basis <provisional api>`. New features might They can be used by third party tools such as type checkers, IDEs, linters,
be added and API may change even between minor releases if deemed etc.
necessary by the core developers.
-------------- --------------