Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/ | 25-Apr-2025 | - | 208 | 152 | ||
docs/ | 25-Apr-2025 | - | 2,676 | 1,913 | ||
scripts/ | 25-Apr-2025 | - | 148 | 119 | ||
typing_extensions/ | 25-Apr-2025 | - | 8,139 | 6,323 | ||
.editorconfig | D | 25-Apr-2025 | 205 | 13 | 9 | |
.flake8 | D | 25-Apr-2025 | 315 | 16 | 14 | |
.flake8-tests | D | 25-Apr-2025 | 462 | 29 | 27 | |
.gitignore | D | 25-Apr-2025 | 112 | 18 | 14 | |
Android.bp | D | 25-Apr-2025 | 906 | 30 | 27 | |
CONTRIBUTING.md | D | 25-Apr-2025 | 2 KiB | 56 | 37 | |
LICENSE | D | 25-Apr-2025 | 12.5 KiB | 255 | 207 | |
METADATA | D | 25-Apr-2025 | 318 | 17 | 16 | |
MODULE_LICENSE_GPL | D | 25-Apr-2025 | 0 | |||
NOTICE | D | 25-Apr-2025 | 12.5 KiB | 255 | 207 | |
OWNERS | D | 25-Apr-2025 | 160 | 9 | 7 | |
README.md | D | 25-Apr-2025 | 1.6 KiB | 42 | 29 | |
test-requirements.txt | D | 25-Apr-2025 | 33 | 4 | 3 |
README.md
1[](https://gitter.im/python/typing?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 2 3Static Typing for Python 4======================== 5 6Documentation and Support 7------------------------- 8 9The documentation for Python's static typing can be found at 10[typing.readthedocs.io](https://typing.readthedocs.io/). You can get 11help either in our [support forum](https://github.com/python/typing/discussions) or 12chat with us on [Gitter](https://gitter.im/python/typing). 13 14Improvements to the type system should be discussed on the 15[typing-sig](https://mail.python.org/mailman3/lists/typing-sig.python.org/) 16mailing list, although the [issues](https://github.com/python/typing/issues) in this 17repository contain some historic discussions. 18 19Repository Content 20------------------ 21 22This GitHub repository is used for several things: 23 24- The `typing_extensions` module lives in the 25 [typing\_extensions](./typing_extensions) directory. 26 27- The documentation at [typing.readthedocs.io](https://typing.readthedocs.io/) 28 is maintained in the [docs directory](./docs). 29 30- A [discussion forum](https://github.com/python/typing/discussions) for typing-related user 31 help is hosted here. 32 33Historically, this repository hosted a backport of the 34[`typing` module](https://docs.python.org/3/library/typing.html) for older 35Python versions. The last released version, supporting Python 2.7 and 3.4, 36is [available at PyPI](https://pypi.org/project/typing/). 37 38Workflow 39-------- 40 41See [CONTRIBUTING.md](/CONTRIBUTING.md) for more. 42