For example::
>>> import ast
>>> print(type(ast.parse('1.2', mode='eval').body.n)
float
How do I let the parser convert a python source file into a syntax tree, while preserving the original values of nodes in str
type? Because I need to convert for example '1.2' into exact values using fractions as precise as possible, without loosing any precision at all (the value 1.2 cannot be precisely represented in floating-point format).
Preferably I wish to do this without reimplementing the parser. Perhaps there are other parsers more suitable for this than the ast
module.
BTW, I need to parse not only expressions but programs.
LibCST is a Python Concrete Syntax tree parser and toolkit which can be used to solve your problem. It provides a syntax tree looks like ast and preserve floating format as string. https://github.com/Instagram/LibCST/
https://libcst.readthedocs.io/en/latest/index.html
Here are some examples: