Develop a composable Python AST lowering framework there are two options: - we can utilize some existing work from RustPython community https://github.com/astral-sh/ruff/tree/v0.4.10/crates/ruff_python_parser - or we use PyO3 to call the inspect to parse a piece of PyMethod source code into ast objects the first one might be simpler and cleaner
Develop a composable Python AST lowering framework there are two options:
the first one might be simpler and cleaner