python-ast 1.0.2

A library for compiling Python to Rust
Documentation
1
2
3
4
5
6
7
8
9
10
import sys
import os

def example():
    print("sys.executable:", sys.executable)
    print("sys.argv:", sys.argv)
    return 42

obj = example()
sys.exit(obj)