Pablo Galindo Salgado <pablog...@gmail.com> added the comment:

> The parser generator imports modules token and tokenize. It is not correct, 
> because they are relevant to the Python version used to run the parser 
> generator, and not to the Python version for which the parser is generated. 
> It works currently only because there is no differences between 3.8 and 3.9, 
> but it will fail when you add a new token or change/remove an old one.

Very good point, Serhiy! Thanks for catching that

So there are two parts of the parser generator where we use these modules:

- For the grammar parser and the python-based generator (that generates the 
grammar parser) we are good because we just need the modules to parse the 
grammars and generate the metaparser so there is no need for those modules to 
be updated. Running the grammar parser (the one generated with the 
meta-grammar) is also fine.

- For the C generator we need the current set of "exact_token_types" and in 
this case we need them to be synchronized with the Tokens file. I think we can 
do as pgen and take the path to that file as part of the command line interface 
and parse it.

I will make a PR for this soon.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue40334>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to