• Home
Name Date Size #Lines LOC

..--

.github/03-May-2024-208152

docs/03-May-2024-2,6761,913

scripts/03-May-2024-148119

typing_extensions/03-May-2024-8,1476,331

.editorconfigD03-May-2024205 139

.flake8D03-May-2024315 1614

.flake8-testsD03-May-2024462 2927

.gitignoreD03-May-2024112 1814

Android.bpD03-May-2024906 3027

CONTRIBUTING.mdD03-May-20242 KiB5637

LICENSED03-May-202412.5 KiB255207

METADATAD03-May-2024318 1716

MODULE_LICENSE_GPLD03-May-20240

NOTICED03-May-202412.5 KiB255207

OWNERSD03-May-2024160 97

README.mdD03-May-20241.6 KiB4229

test-requirements.txtD03-May-202433 43

README.md

1[![Chat at https://gitter.im/python/typing](https://badges.gitter.im/python/typing.svg)](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