MCPcopy Index your code
hub / github.com/RustPython/RustPython / module_exec

Function module_exec

crates/vm/src/stdlib/nt.rs:2293–2300  ·  view source on GitHub ↗
(
        vm: &VirtualMachine,
        module: &Py<crate::builtins::PyModule>,
    )

Source from the content-addressed store, hash-verified

2291 }
2292
2293 pub(crate) fn module_exec(
2294 vm: &VirtualMachine,
2295 module: &Py<crate::builtins::PyModule>,
2296 ) -> PyResult<()> {
2297 __module_exec(vm, module);
2298 super::super::os::module_exec(vm, module)?;
2299 Ok(())
2300 }
2301}

Callers 2

init_moduleFunction · 0.70
init_moduleFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected