-
-
Notifications
You must be signed in to change notification settings - Fork 33.3k
bpo-46494: Mention the typing_extensions pkg in typing docs #31260
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,6 +32,11 @@ In the function ``greeting``, the argument ``name`` is expected to be of type | |
| :class:`str` and the return type :class:`str`. Subtypes are accepted as | ||
| arguments. | ||
|
|
||
| New features have been added to the typing module in each major version of | ||
| Python. The `typing_extensions <https://pypi.org/project/typing-extensions/>`_ | ||
| package provides backports to all supported versions of Python 3 for almost | ||
|
||
| all of these features. | ||
|
|
||
| .. _relevant-peps: | ||
|
|
||
| Relevant PEPs | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
have been->are?(not a native speaker)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think "have been" is right. "are" would imply that we keep adding new features to each version, which has been true so far but isn't something we can promise will remain true :)
But separately, I think "major version" is wrong. Python 3 is a major version, but here we're talking about 3.9, 3.10, etc. Those are minor versions.