diff options
author | Ivan Levkivskyi <levkivskyi@gmail.com> | 2019-05-26 08:37:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-26 08:37:07 (GMT) |
commit | f367242d10ef36db38133a39ab7627f63099cba4 (patch) | |
tree | 9e6b8d67b14a69fda120cc5433013b6d1f7b6c35 /Misc/NEWS.d | |
parent | 47dd2f9fd86c32a79e77fef1fbb1ce25dc929de6 (diff) | |
download | cpython-f367242d10ef36db38133a39ab7627f63099cba4.zip cpython-f367242d10ef36db38133a39ab7627f63099cba4.tar.gz cpython-f367242d10ef36db38133a39ab7627f63099cba4.tar.bz2 |
bpo-37045: PEP 591: Add final qualifiers to typing module (GH-13571)
The implementation is straightforward, it just mimics `ClassVar` (since the latter is also a name/access qualifier, not really a type). Also it is essentially copied from `typing_extensions`.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-05-25-18-36-50.bpo-37045.suHdVJ.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-25-18-36-50.bpo-37045.suHdVJ.rst b/Misc/NEWS.d/next/Library/2019-05-25-18-36-50.bpo-37045.suHdVJ.rst new file mode 100644 index 0000000..001529e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-05-25-18-36-50.bpo-37045.suHdVJ.rst @@ -0,0 +1 @@ +PEP 591: Add ``Final`` qualifier and ``@final`` decorator to the ``typing`` module.
\ No newline at end of file |