METADATA 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Metadata-Version: 2.1
  2. Name: typing-extensions
  3. Version: 3.10.0.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, Łukasz 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: Programming Language :: Python :: 3.10
  24. Classifier: Topic :: Software Development
  25. License-File: LICENSE
  26. Requires-Dist: typing (>=3.7.4) ; python_version < "3.5"
  27. Typing Extensions -- Backported and Experimental Type Hints for Python
  28. The ``typing`` module was added to the standard library in Python 3.5, but
  29. many new features have been added to the module since then.
  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.Protocol`` or ``typing.TypedDict``.
  33. The ``typing_extensions`` module contains backports of these changes.
  34. Experimental types that will eventually be added to the ``typing``
  35. module are also included in ``typing_extensions``, such as
  36. ``typing.ParamSpec`` and ``typing.TypeGuard``.
  37. Users of Python versions before 3.5 should install and use
  38. the ``typing`` module from PyPI instead of using this one, unless specifically
  39. writing code that must be compatible with multiple Python versions or requires
  40. experimental types.