Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added links to several typing-related PEPs #37

Merged
merged 3 commits into from
May 19, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 21 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,27 @@ Collection of awesome Python types, stubs, plugins, and tools to work with them.

### PEPs

- [PEP-483](https://www.python.org/dev/peps/pep-0483/) - About type hints theory.
- [PEP-484](https://www.python.org/dev/peps/pep-0484/) - About type annotations.
- [PEP-544](https://www.python.org/dev/peps/pep-0544/) - About protocols.
- [PEP-561](https://www.python.org/dev/peps/pep-0561/) - About distributing and packaging type information.
- [PEP-563](https://www.python.org/dev/peps/pep-0563/) - About postponed evaluation of annotations.
- [PEP-586](https://www.python.org/dev/peps/pep-0586/) - About literal types.
- [PEP-3107](https://www.python.org/dev/peps/pep-3107/) - About function annotations.
- [PEP-3107](https://www.python.org/dev/peps/pep-3107) - Function Annotations
- [PEP-482](https://www.python.org/dev/peps/pep-0482/) - Literature Overview for Type Hints
- [PEP-483](https://www.python.org/dev/peps/pep-0483/) - The Theory of Type Hints (*)
- [PEP-484](https://www.python.org/dev/peps/pep-0484/) - Type Hints (*)
- [PEP-526](https://www.python.org/dev/peps/pep-0526/) - Syntax for Variable Annotations (*)
- [PEP-544](https://www.python.org/dev/peps/pep-0544/) - Protocols: Structural subtyping (static duck typing) (*)
- [PEP-557](https://www.python.org/dev/peps/pep-0557/) - Data Classes
- [PEP-560](https://www.python.org/dev/peps/pep-0560/) - Core support for typing module and generic types
- [PEP-561](https://www.python.org/dev/peps/pep-0561/) - Distributing and Packaging Type Information
- [PEP-563](https://www.python.org/dev/peps/pep-0563/) - Postponed Evaluation of Annotations
- [PEP-585](https://www.python.org/dev/peps/pep-0585/) - Type Hinting Generics In Standard Collections
- [PEP-586](https://www.python.org/dev/peps/pep-0586/) - Literal Types (*)
- [PEP-589](https://www.python.org/dev/peps/pep-0589/) - TypedDict: Type Hints for Dictionaries with a Fixed Set of Keys (*)
- [PEP-591](https://www.python.org/dev/peps/pep-0591/) - Adding a final qualifier to typing (*)
- [PEP-593](https://www.python.org/dev/peps/pep-0593/) - Flexible function and variable annotations
- [PEP-604](https://www.python.org/dev/peps/pep-0604/) - Complementary syntax for Union[]
- [PEP-612](https://www.python.org/dev/peps/pep-0612/) - Parameter Specification Variables
- [PEP-613](https://www.python.org/dev/peps/pep-0613/) - Explicit Type Aliases

(*) these PEPs are mentioned on the first paragraph of the [typing](https://docs.python.org/3/library/typing.html) module documenation, so they may be the best places to start.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would say it is safe to remove this mark.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, I will remove it.



### Python docs

Expand Down