python-ast 1.0.2

A library for compiling Python to Rust
Documentation
1
2
3
4
5
6
import subprocess
import sys
import os

result = subprocess.run([sys.executable, "-u", "-m", "test"], cwd=os.path.dirname(__file__))
print("Return code:", result.returncode)