//! Code generation for Python ASTs.
usestd::fmt::Debug;pubmodpython_options;pubusepython_options::*;/// Reexport the CodeGen from to_tokenstream
pubuseto_tokenstream::CodeGen;/// A type to track the context of code generation.
#[derive(Clone, Debug)]pubenumCodeGenContext{
Module(String),
Class,
Function,
Async(Box<CodeGenContext>),}