bpo-36143: make regen-all now also runs regen-keyword (GH-24245) · python/cpython@6a809fa (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 6a809fa
File tree
2 files changed
lines changed
2 files changed
lines changed
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -755,7 +755,7 @@ regen-limited-abi: all | ||
755 | 755 | # Regenerate all generated files |
756 | 756 | |
757 | 757 | regen-all: regen-opcode regen-opcode-targets regen-typeslots \ |
758 | - regen-token regen-ast regen-importlib clinic \ | |
758 | + regen-token regen-ast regen-keyword regen-importlib clinic \ | |
759 | 759 | regen-pegen-metaparser regen-pegen |
760 | 760 | |
761 | 761 | ############################################################################ |
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1 | +``make regen-all`` now also runs ``regen-keyword``. Patch by Victor Stinner. |