| 26 | /// See also [Module](https://docs.python.org/3/library/ast.html#ast.Module) |
| 27 | #[derive(Default, Clone, Debug, PartialEq, Eq, Hash)] |
| 28 | pub struct ModModule { |
| 29 | pub range: TextRange, |
| 30 | pub body: Vec<Stmt>, |
| 31 | } |
| 32 | |
| 33 | impl From<ModModule> for Mod { |
| 34 | fn from(payload: ModModule) -> Self { |