METADATA 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Metadata-Version: 2.1
  2. Name: typing_extensions
  3. Version: 4.0.1
  4. Summary: Backported and Experimental Type Hints for Python 3.6+
  5. Keywords: annotations,backport,checker,checking,function,hinting,hints,type,typechecking,typehinting,typehints,typing
  6. Author-email: "Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" <levkivskyi@gmail.com>
  7. Requires-Python: >=3.6
  8. Description-Content-Type: text/x-rst
  9. Classifier: Development Status :: 3 - Alpha
  10. Classifier: Environment :: Console
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: Python Software Foundation License
  13. Classifier: Operating System :: OS Independent
  14. Classifier: Programming Language :: Python :: 3
  15. Classifier: Programming Language :: Python :: 3 :: Only
  16. Classifier: Programming Language :: Python :: 3.6
  17. Classifier: Programming Language :: Python :: 3.7
  18. Classifier: Programming Language :: Python :: 3.8
  19. Classifier: Programming Language :: Python :: 3.9
  20. Classifier: Programming Language :: Python :: 3.10
  21. Classifier: Topic :: Software Development
  22. Project-URL: Home, https://github.com/python/typing/blob/master/typing_extensions/README.rst
  23. Typing Extensions -- Backported and Experimental Type Hints for Python
  24. The ``typing`` module was added to the standard library in Python 3.5, but
  25. many new features have been added to the module since then.
  26. This means users of older Python versions who are unable to upgrade will not be
  27. able to take advantage of new types added to the ``typing`` module, such as
  28. ``typing.Protocol`` or ``typing.TypedDict``.
  29. The ``typing_extensions`` module contains backports of these changes.
  30. Experimental types that may eventually be added to the ``typing``
  31. module are also included in ``typing_extensions``.