We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a6fdb6 commit 55b066dCopy full SHA for 55b066d
vm/src/stdlib/mod.rs
@@ -49,6 +49,7 @@ pub mod sys;
49
mod winapi;
50
#[cfg(windows)]
51
mod winreg;
52
+mod opcode;
53
54
use crate::{builtins::PyModule, PyRef, VirtualMachine};
55
use std::{borrow::Cow, collections::HashMap};
@@ -83,6 +84,7 @@ pub fn get_module_inits() -> StdlibMap {
83
84
"itertools" => itertools::make_module,
85
"_io" => io::make_module,
86
"marshal" => marshal::make_module,
87
+ "_opcode" => opcode::make_module,
88
"_operator" => operator::make_module,
89
"_signal" => signal::make_module,
90
"_sre" => sre::make_module,
vm/src/stdlib/opcode.rs
@@ -0,0 +1,6 @@
1
+pub(crate) use _opcode::make_module;
2
+
3
+#[pymodule]
4
+mod _opcode {
5
6
+}
0 commit comments