8000 GH-105848: Get rid of `KW_NAMES` (again) by brandtbucher · Pull Request #108496 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-105848: Get rid of KW_NAMES (again) #108496

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

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to loa 8000 d comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update tests
  • Loading branch information
brandtbucher committed Aug 10, 2023
commit 282b494927f989b87c3e9c035aee1671bd2765cc
1 change: 1 addition & 0 deletions Lib/test/test_compiler_assemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ def inner():
('MAKE_FUNCTION', 0, 2),
('SET_FUNCTION_ATTRIBUTE', 8, 2),
('PUSH_NULL', 0, 1),
('PUSH_NULL', 0, 1),
('CALL', 0, 2), # (lambda: x)()
('LOAD_CONST', 2, 2), # 2
('BINARY_OP', 6, 2), # %
Expand Down
1 change: 1 addition & 0 deletions Lib/test/test_compiler_codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def test_for_loop(self):
('LOAD_NAME', 2, 2),
('PUSH_NULL', None, 2),
('LOAD_NAME', 1, 2),
('PUSH_NULL', None, 2),
('CALL', 1, 2),
('POP_TOP', None),
('JUMP', loop_lbl),
Expand Down
Loading
0