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
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
Typo
  • Loading branch information
gvanrossum authored Mar 3, 2023
commit 9efb92913da20c9b49732348fcc15f4d9a8bda64
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}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