• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.github/25-Apr-2025-208152

docs/25-Apr-2025-2,6761,913

scripts/25-Apr-2025-148119

typing_extensions/25-Apr-2025-8,1396,323

.editorconfigD25-Apr-2025205 139

.flake8D25-Apr-2025315 1614

.flake8-testsD25-Apr-2025462 2927

.gitignoreD25-Apr-2025112 1814

Android.bpD25-Apr-2025906 3027

CONTRIBUTING.mdD25-Apr-20252 KiB5637

LICENSED25-Apr-202512.5 KiB255207

METADATAD25-Apr-2025318 1716

MODULE_LICENSE_GPLD25-Apr-20250

NOTICED25-Apr-202512.5 KiB255207

OWNERSD25-Apr-2025160 97

README.mdD25-Apr-20251.6 KiB4229

test-requirements.txtD25-Apr-202533 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