gh-116991: Improve pygen --help for python subparser (#116992)

This commit is contained in:
Nikita Sobolev 2024-06-03 10:52:35 +03:00 committed by GitHub
parent 84c3191954
commit 1e5f615086
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -107,7 +107,10 @@ def generate_python_code(
help="Suppress code emission for rule actions",
)
python_parser = subparsers.add_parser("python", help="Generate Python code")
python_parser = subparsers.add_parser(
"python",
help="Generate Python code, needs grammar definition with Python actions",
)
python_parser.set_defaults(func=generate_python_code)
python_parser.add_argument("grammar_filename", help="Grammar description")
python_parser.add_argument(