We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b4b134 commit bdd3bebCopy full SHA for bdd3beb
vm/src/vm/mod.rs
@@ -247,6 +247,8 @@ impl VirtualMachine {
247
let mut essential_init = || -> PyResult {
248
#[cfg(not(target_arch = "wasm32"))]
249
import::import_builtin(self, "_signal")?;
250
+ #[cfg(any(feature = "parser", feature = "compiler"))]
251
+ import::import_builtin(self, "_ast")?;
252
#[cfg(not(feature = "threading"))]
253
import::import_frozen(self, "_thread")?;
254
let importlib = import::init_importlib_base(self)?;
0 commit comments