python / typed_ast

Modified fork of CPython's ast module that parses `# type:` comments
Other
228 stars 54 forks source link

Fix #167: Port ast27 to Python 3.11 #176

Closed vstinner closed 2 years ago

vstinner commented 2 years ago

Copy _PyLong_DigitValue table from Python 3.10 as "digitvalue" in ast27/Python/mystrtoul.c. The symbol has been removed from the public Python 3.11 C API.

vstinner commented 2 years ago

See also https://github.com/python/typed_ast/issues/170