summaryrefslogtreecommitdiffstats
path: root/Parser/pgen/__main__.py
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-08-22 01:38:39 (GMT)
committerGitHub <noreply@github.com>2019-08-22 01:38:39 (GMT)
commit71876fa438f706b211360d8c205cb985906212ee (patch)
treea8804ad4a3a62b234c0b6e18a9f5c31836c22bc1 /Parser/pgen/__main__.py
parent374be59b8e479afa8c7a8ae6e77e98915e2f6d45 (diff)
downloadcpython-71876fa438f706b211360d8c205cb985906212ee.zip
cpython-71876fa438f706b211360d8c205cb985906212ee.tar.gz
cpython-71876fa438f706b211360d8c205cb985906212ee.tar.bz2
Refactor Parser/pgen and add documentation and explanations (GH-15373)
* Refactor Parser/pgen and add documentation and explanations To improve the readability and maintainability of the parser generator perform the following transformations: * Separate the metagrammar parser in its own class to simplify the parser generator logic. * Create separate classes for DFAs and NFAs and move methods that act exclusively on them from the parser generator to these classes. * Add docstrings and comment documenting the process to go from the grammar file into NFAs and then DFAs. Detail some of the algorithms and give some background explanations of some concepts that will helps readers not familiar with the parser generation process. * Select more descriptive names for some variables and variables. * PEP8 formatting and quote-style homogenization. The output of the parser generator remains the same (Include/graminit.h and Python/graminit.c remain untouched by running the new parser generator).
Diffstat (limited to 'Parser/pgen/__main__.py')
-rw-r--r--Parser/pgen/__main__.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/Parser/pgen/__main__.py b/Parser/pgen/__main__.py
index eea5261..bb96e75 100644
--- a/Parser/pgen/__main__.py
+++ b/Parser/pgen/__main__.py
@@ -8,17 +8,15 @@ def main():
parser.add_argument(
"grammar", type=str, help="The file with the grammar definition in EBNF format"
)
- parser.add_argument(
- "tokens", type=str, help="The file with the token definitions"
- )
+ parser.add_argument("tokens", type=str, help="The file with the token definitions")
parser.add_argument(
"graminit_h",
- type=argparse.FileType('w'),
+ type=argparse.FileType("w"),
help="The path to write the grammar's non-terminals as #defines",
)
parser.add_argument(
"graminit_c",
- type=argparse.FileType('w'),
+ type=argparse.FileType("w"),
help="The path to write the grammar as initialized data",
)