8000 gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. by iritkatriel · Pull Request #108367 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. #108367

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 5 commits into from
Aug 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
use _
Co-authored-by: Guido van Rossum <gvanrossum@gmail.com>
  • Loading branch information
iritkatriel and gvanrossum authored Aug 23, 2023
commit f2e82d326b3a55d50758996e3c53fb51a7bde119
2 changes: 1 addition & 1 deletion Tools/cases_generator/generate_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ def write_metadata(self, metadata_filename: str, pymetadata_filename: str) -> No
"=",
";",
):
for name, family in self.families.items():
for name, _ in self.families.items():
instr = self.instrs[name]
if instr.cache_offset > 0:
self.out.emit(f'[{name}] = {instr.cache_offset},')
Expand Down
0