comparison planemo/lib/python3.7/site-packages/typing_extensions-3.7.4.2.dist-info/METADATA @ 1:56ad4e20f292 draft

"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author guerler
date Fri, 31 Jul 2020 00:32:28 -0400
parents
children
comparison
equal deleted inserted replaced
0:d30785e31577 1:56ad4e20f292
1 Metadata-Version: 2.1
2 Name: typing-extensions
3 Version: 3.7.4.2
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