8000 gh-102021 : Allow multiple input files for interpreter loop generator by jbower-fb · Pull Request #102022 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-102021 : Allow multiple input files for interpreter loop generator #102022

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 4 commits into from
Mar 4, 2023
Merged
Show file tree
Hide file tree
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
Next Nex 8000 t commit
Don't mention --metadata in header comment
  • Loading branch information
gvanrossum authored Mar 3, 2023
commit a46d6560f7c7f256c80209a1560246131866929e
2 changes: 1 addition & 1 deletion Python/opcode_metadata.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is generated by Tools/cases_generator/generate_cases.py --metadata
// This file is generated by Tools/cases_generator/generate_cases.py
// from:
// Python/bytecodes.c
// Do not edit!
Expand Down
2 changes: 1 addition & 1 deletion Tools/cases_generator/generate_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ def write_metadata(self) -> None:

with open(self.metadata_filename, "w") as f:
# Write provenance header
f.write(f"// This file is generated by {THIS} --metadata\n")
f.write(f"// This file is generated by {THIS}n")
f.write(self.from_source_files())
f.write(f"// Do not edit!\n")

Expand Down
0