Fix warnings for doc build.

This commit is contained in:
jfh 2021-10-07 17:37:24 +03:00
parent e038799297
commit 6a19201eb4

View file

@ -2,8 +2,8 @@
//! Take an AST and transform it into bytecode
//!
//! Inspirational code:
//! https://github.com/python/cpython/blob/main/Python/compile.c
//! https://github.com/micropython/micropython/blob/master/py/compile.c
//! <https://github.com/python/cpython/blob/main/Python/compile.c>
//! <https://github.com/micropython/micropython/blob/master/py/compile.c>
use crate::ir::{self, CodeInfo};
pub use crate::mode::Mode;