Decompiler module.
This module can decompile arbitrary code objects into a python ast.
Decompile a function into ast.FunctionDef node.
Parameters: | func – python function (can not be a built-in) |
---|---|
Returns: | ast.FunctionDef instance. |
Compile a function from an ast.FunctionDef instance.
Parameters: |
|
---|---|
Returns: | A python function object |