Skip to main content

Pure-Python implementation of the "ast" module

Project description

This is a pure-Python implementation of the “ast” module as described in CPython documentation. It is written for the Pycopy project, the minimalist Python dialect, and is a part of its standard library, pycopy-lib. However, it can also run under CPython and other Python implementations.

Implementation-wise, it is laid out as a package, with the following submodules:

  • ast.types, with AST node types auto-generated from CPython’s ASDL description.

  • ast.parser, implementing hand-written parser for Python 3.6, utilizing recursive descent to parse statements, and Pratt operator precedence parser to parse expressions.

  • ast, the main package, integrating submodules above, and exposing CPython-compatible API with corresponding additional functions and classes to process AST trees.

At the time of writing, the parser supports Python 3.6 syntax. Updates for the next versions of Python syntax are expected to follow.

The package has small builtin test corpus to check that the AST trees match the ones generated by CPython, and can also use entire CPython standard library as a test corpus, which it also can parse correctly (but with some discrepancies, e.g. this module is optimized for minimal size and doesn’t support Unicode named escape sequences (in the same way as Pycopy doesn’t support them)).

Pycopy’s ast module is written by Paul Sokolovsky and provided under the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycopy-ast-2.9.1.tar.gz (11.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page