a b c d e f g h i j k l m n o p q r s t u v w x y z
Description: Backported and Experimental Type Hints for Python
The typing module was added to the standard library in Python 3.5 on a
provisional basis and will no longer be provisional in Python 3.7. However,
this means users of Python 3.5 - 3.6 who are unable to upgrade will not be
able to take advantage of new types added to the typing module, such as
typing.Text or typing.Coroutine.
.
The typing_extensions module contains both backports of these changes as well
as experimental types that will eventually be added to the typing module, such
as Protocol.
.
Users of other Python versions should continue to install and use the typing
module from PyPI instead of using this one unless specifically writing code
that must be compatible with multiple Python versions or requires experimental
types.
Description: Backported and Experimental Type Hints for Python (Python3 version)
The "typing_extensions" module serves two related purposes:
.
1. Enable use of new type system features on older Python versions.
2. Enable experimentation with new type system PEPs before they are accepted
and added to the "typing" module.
.
"typing_extensions" is treated specially by static type checkers such as mypy
and pyright. Objects defined in "typing_extensions" are treated the same
way as equivalent forms in "typing".
.
This package contains the Python 3 version of the library.
--- 265253 Thu Jan 1 00:00:00 1970
+++ 327098 Thu Jan 1 00:00:00 1970
@@ -1,15 +1,12 @@
-Backported and Experimental Type Hints for Python
- The typing module was added to the standard library in Python 3.5 on a
- provisional basis and will no longer be provisional in Python 3.7. However,
- this means users of Python 3.5 - 3.6 who are unable to upgrade will not be
- able to take advantage of new types added to the typing module, such as
- typing.Text or typing.Coroutine.
+Backported and Experimental Type Hints for Python (Python3 version)
+ The "typing_extensions" module serves two related purposes:
.
- The typing_extensions module contains both backports of these changes as well
- as experimental types that will eventually be added to the typing module, such
- as Protocol.
+ 1. Enable use of new type system features on older Python versions.
+ 2. Enable experimentation with new type system PEPs before they are accepted
+ and added to the "typing" module.
.
- Users of other Python versions should continue to install and use the typing
+ "typing_extensions" is treated specially by static type checkers such as mypy
- module from PyPI instead of using this one unless specifically writing code
+ and pyright. Objects defined in "typing_extensions" are treated the same
- that must be compatible with multiple Python versions or requires experimental
+ way as equivalent forms in "typing".
- types.
+ .
+ This package contains the Python 3 version of the library.