BaseMod
ast.mod = class mod(AST)
| mod = Module(stmt* body, type_ignore* type_ignores)
| | Interactive(stmt* body)
| | Expression(expr body)
| | FunctionType(expr* argtypes, expr returns)
Content copied to clipboard
Note: We currently only support Module
s.