-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
GH-98831: Modernize a ton of simpler instructions #100545
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
e48824d
load_const and load_fast aren't families for now
gvanrossum 852ad17
Modernize GET_ANEXT
gvanrossum ec12b8c
Modernize GET_AWAITABLE
gvanrossum f58b421
Modernize ASYNC_GEN_WRAP
gvanrossum c4c821e
Modernize YIELD_VALUE
gvanrossum 55c009c
Modernize POP_EXCEPT (in more than one way)
gvanrossum d678363
Modernize PREP_RERAISE_STAR
gvanrossum 301cc6e
Modernize LOAD_ASSERTION_ERROR
gvanrossum 84fcd61
Modernize LOAD_BUILD_CLASS
gvanrossum 2fcb3d7
Modernize STORE_NAME
gvanrossum c094ff4
Modernize LOAD_NAME
gvanrossum c89dfd5
Modernize LOAD_CLASSDEREF
gvanrossum 415203c
Modernize LOAD_DEREF
gvanrossum cc7bf1f
Modernize STORE_DEREF
gvanrossum 304997f
Modernize COPY_FREE_VARS (mark it as done)
gvanrossum b388032
Modernize LIST_TO_TUPLE
gvanrossum a84c0e3
Modernize LIST_EXTEND
gvanrossum 9099c40
Modernize SET_UPDATE
gvanrossum fc534ed
Modernize SETUP_ANNOTATIONS
gvanrossum 3a1e63c
Modernize DICT_UPDATE
gvanrossum f9fc640
Modernize DICT_MERGE
gvanrossum ad38a3c
Modernize MAP_ADD
gvanrossum b4fe323
Modernize IS_OP
gvanrossum 9e69806
Modernize CONTAINS_OP
gvanrossum d1aa4d5
Don't decref unmoved names
gvanrossum b06aafa
Modernize CHECK_EXC_MATCH
gvanrossum 154ae46
Modernize IMPORT_NAME
gvanrossum d1ea957
Modernize IMPORT_STAR
gvanrossum 9a1626e
Modernize IMPORT_FROM
gvanrossum d5c79e7
Modernize JUMP_FORWARD (mark it as done)
gvanrossum 7a40a8c
Modernize JUMP_BACKWARD (mark it as done)
gvanrossum 841f086
Add/update dummies to quiet VS Code
gvanrossum 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
Next
Next commit
load_const and load_fast aren't families for now
- Loading branch information
commit e48824da30aa301e76b4e03abe8c8407bf70ff82
There are no files selected for viewing
This file contains hidden or 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
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.
Why are these families being removed?
Uh oh!
There was an error while loading. Please reload this page.
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.
This part of the file isn't parsed anyway, and if we moved these families into a part where they would be parsed the generator would complain, because it currently doesn't support super-instructions as part of a family.
See also faster-cpython/ideas#495