METADATA 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Metadata-Version: 2.1
  2. Name: typing
  3. Version: 3.7.4
  4. Summary: Type Hints for Python
  5. Home-page: https://docs.python.org/3/library/typing.html
  6. Author: Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Ivan Levkivskyi
  7. Author-email: jukka.lehtosalo@iki.fi
  8. License: PSF
  9. Keywords: typing function annotations type hints hinting checking checker typehints typehinting typechecking backport
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  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: Topic :: Software Development
  19. Typing -- Type Hints for Python
  20. This is a backport of the standard library typing module to Python
  21. versions older than 3.5. (See note below for newer versions.)
  22. Typing defines a standard notation for Python function and variable
  23. type annotations. The notation can be used for documenting code in a
  24. concise, standard format, and it has been designed to also be used by
  25. static and runtime type checkers, static analyzers, IDEs and other
  26. tools.
  27. NOTE: in Python 3.5 and later, the typing module lives in the stdlib,
  28. and installing this package has NO EFFECT. To get a newer version of
  29. the typing module in Python 3.5 or later, you have to upgrade to a
  30. newer Python (bugfix) version. For example, typing in Python 3.6.0 is
  31. missing the definition of 'Type' -- upgrading to 3.6.2 will fix this.
  32. Also note that most improvements to the typing module in Python 3.7
  33. will not be included in this package, since Python 3.7 has some
  34. built-in support that is not present in older versions (See PEP 560.)