|
1 | 1 | [](https://gitter.im/python/typing?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) |
2 | 2 |
|
3 | | -PEP 484: Type Hints |
4 | | -=================== |
| 3 | +Static Typing for Python |
| 4 | +======================== |
5 | 5 |
|
6 | | -This GitHub repo is used for three separate things: |
| 6 | +Documentation and Support |
| 7 | +------------------------- |
7 | 8 |
|
8 | | -- The issue tracker is used to discuss PEP-level type system issues. |
9 | | - However, |
10 | | - [typing-sig](https://mail.python.org/mailman3/lists/typing-sig.python.org/) |
11 | | - is more appropriate these days. |
| 9 | +The documentation for Python's static typing can be found at |
| 10 | +[typing.readthedocs.io](https://typing.readthedocs.io/). You can get |
| 11 | +help either in our [support forum](/python/typing/discussions) or |
| 12 | +chat with us on (Gitter)[https://gitter.im/python/typing]. |
| 13 | + |
| 14 | +Improvements to the type system should be discussed on the |
| 15 | +[typing-sig](https://mail.python.org/mailman3/lists/typing-sig.python.org/) |
| 16 | +mailing list, although the [issues](/python/typing/issues) in this |
| 17 | +repository contain some historic discussions. |
| 18 | + |
| 19 | +Repository Content |
| 20 | +------------------ |
| 21 | + |
| 22 | +This GitHub repo is used for several things: |
12 | 23 |
|
13 | 24 | - A backport of the `typing` module for older Python versions (2.7 and |
14 | | - 3.4) is maintained here. Note that the canonical source lives |
| 25 | + 3.4) is maintained in the [src directory](./src). |
| 26 | + Note that the canonical source lives |
15 | 27 | [upstream](https://github.com/python/cpython/blob/master/Lib/typing.py) |
16 | 28 | in the CPython repo. |
17 | 29 |
|
18 | | -- The `typing_extensions` module lives here. |
| 30 | +- The `typing_extensions` module lives in the |
| 31 | + [typing\_extensions](./typing_extensions) directory. |
| 32 | + |
| 33 | +- The documentation at [typing.readthedocs.io](https://typing.readthedocs.io/) |
| 34 | + is maintained in the [docs directory](./docs). |
| 35 | + |
| 36 | +- A [discussion forum](/python/typing/discussions) for typing-related user |
| 37 | + help is hosted here. |
19 | 38 |
|
20 | 39 | Workflow |
21 | 40 | -------- |
|
0 commit comments