-
Notifications
You must be signed in to change notification settings - Fork 237
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
PEP 646 implementation #963
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
c8463e8
all the tests pass
JelleZijlstra 7fcea86
lint fixes
JelleZijlstra be56a0a
more lint
JelleZijlstra c6d8747
fix 3.10
JelleZijlstra 6deaf4c
separate Unpack tests
JelleZijlstra 19233f7
update README
JelleZijlstra c241435
add get_origin/get_args tests
JelleZijlstra b2c7a5e
fix lint
JelleZijlstra c7d8823
fix name
JelleZijlstra 8610e35
fix 3.6
JelleZijlstra 9e820f4
that was not 3.6
JelleZijlstra f2cf02e
more thorough monkeypatching
JelleZijlstra 0f386e2
fix lint
JelleZijlstra 55c4d20
3.6 hacks
JelleZijlstra 9229373
give up on 3.6
JelleZijlstra 0d16423
docs
JelleZijlstra ff2f05c
TypeVarTuple docstring (adapted from the PEP)
JelleZijlstra e4cac11
Merge branch 'master' into pep646
JelleZijlstra 53219df
Merge branch 'master' into pep646
JelleZijlstra d6d5ba8
Merge branch 'master' into pep646
JelleZijlstra 8ca9ed3
Merge branch 'master' into pep646
JelleZijlstra d3f77c2
improve tests, docs, parens
JelleZijlstra fdfe563
Merge branch 'master' into pep646
JelleZijlstra 80d8477
Merge branch 'master' into pep646
JelleZijlstra e46a306
Merge branch 'master' into pep646
JelleZijlstra 5cd13f6
Remove bound and variance from TypeVarTuple
JelleZijlstra 22b9c18
Merge branch 'master' into pep646
JelleZijlstra File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
To clarify, this means even with our monkey patching, subscripting with arbitrary number of type arguments won't work right?
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.
Defining the class doesn't even work. I'll make the note more precise.