comparison env/lib/python3.9/site-packages/typing_extensions-3.7.4.3.dist-info/METADATA @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 Metadata-Version: 2.1
2 Name: typing-extensions
3 Version: 3.7.4.3
4 Summary: Backported and Experimental Type Hints for Python 3.5+
5 Home-page: https://github.com/python/typing/blob/master/typing_extensions/README.rst
6 Author: Guido van Rossum, Jukka Lehtosalo, Lukasz Langa, Michael Lee
7 Author-email: levkivskyi@gmail.com
8 License: PSF
9 Keywords: typing function annotations type hints hinting checking checker typehints typehinting typechecking backport
10 Platform: UNKNOWN
11 Classifier: Development Status :: 3 - Alpha
12 Classifier: Environment :: Console
13 Classifier: Intended Audience :: Developers
14 Classifier: License :: OSI Approved :: Python Software Foundation License
15 Classifier: Operating System :: OS Independent
16 Classifier: Programming Language :: Python :: 2.7
17 Classifier: Programming Language :: Python :: 3.4
18 Classifier: Programming Language :: Python :: 3.5
19 Classifier: Programming Language :: Python :: 3.6
20 Classifier: Programming Language :: Python :: 3.7
21 Classifier: Programming Language :: Python :: 3.8
22 Classifier: Programming Language :: Python :: 3.9
23 Classifier: Topic :: Software Development
24 Requires-Dist: typing (>=3.7.4) ; python_version < "3.5"
25
26 Typing Extensions -- Backported and Experimental Type Hints for Python
27
28 The ``typing`` module was added to the standard library in Python 3.5 on
29 a provisional basis and will no longer be provisional in Python 3.7. However,
30 this means users of Python 3.5 - 3.6 who are unable to upgrade will not be
31 able to take advantage of new types added to the ``typing`` module, such as
32 ``typing.Text`` or ``typing.Coroutine``.
33
34 The ``typing_extensions`` module contains both backports of these changes
35 as well as experimental types that will eventually be added to the ``typing``
36 module, such as ``Protocol`` or ``TypedDict``.
37
38 Users of other Python versions should continue to install and use
39 the ``typing`` module from PyPi instead of using this one unless specifically
40 writing code that must be compatible with multiple Python versions or requires
41 experimental types.
42
43