This repository is a work-in-progress implementation of Rewrite Python language support.
This is largely based on the Python grammar specification.
The Python parser is being implemented in Python, but its printer is implemented in Java. So regardless of whether the tests are written in Java or in Python, both a Python and a Java process are required to validate the parser's results. As we already have plenty of tests written in Java, this section describes how to run these and also debug the parser. Thus, the idea is to run OpenRewrite JUnit tests, which behind the scenes parse the Python sources using a Python application, where the two applications communicate via TCP sockets (using the LST remoting protocol). In the setup described here it is at the time of writing important that the GitHub repos are cloned in a organization/repo structure.
- Clone both
moderneinc/rewrite-remote
andopenrewrite/rewrite-python
(here we are assuming~/git
to be the parent directory)mkdir -p ~/git/moderneinc && gh repo clone moderneinc/rewrite-remote ~/git/moderneinc/rewrite-remote mkdir -p ~/git/openrewrite && gh repo clone openrewrite/rewrite-python ~/git/openrewrite/rewrite-python
- Make sure Python 3.8 and Poetry are installed
brew install [email protected] brew install poetry
- Create a Python virtual environment (here we are going to use
~/.venv
but any directory works) and activate itpython3.8 -m venv ~/.venv source ~/.venv/bin/activate
- Switch to
moderneinc/rewrite-remote/python
and install all dependencies using Poetrycd ~/git/moderneinc/rewrite-remote/python/rewrite-remote-test poetry install
- Open
~/git/openrewrite/rewrite-python/rewrite
in IDEA (or PyCharm)idea ~/git/openrewrite/rewrite-python/rewrite
- Make sure that the Python plugin is installed and also that the interpreter from the created venv is configured and used
- Create a new run configuration which runs the Python module
rewrite.remote.server
(typically in debug mode) - Now open
~/git/openrewrite/rewrite-python
in a second IDEA workspace and run the JUnit tests from there
- Python Builtins, which are sometimes used to desugar syntax.
- Python Magic Methods (aka "dunders"), also used for desugaring.