There was an error while loading. Please reload this page.
1 parent 44b3366 commit b7ec304Copy full SHA for b7ec304
1 file changed
derive/src/pymodule.rs
@@ -63,7 +63,7 @@ pub fn impl_pymodule(
63
},
64
parse_quote! {
65
pub(crate) fn extend_module(
66
- vm: &::rustpython_vm::vm::VirtualMachine,
+ vm: &::rustpython_vm::VirtualMachine,
67
module: &::rustpython_vm::pyobject::PyObjectRef,
68
) {
69
#module_extend_items
@@ -72,7 +72,7 @@ pub fn impl_pymodule(
72
73
#[allow(dead_code)]
74
pub(crate) fn make_module(
75
- vm: &::rustpython_vm::vm::VirtualMachine
+ vm: &::rustpython_vm::VirtualMachine
76
) -> ::rustpython_vm::pyobject::PyObjectRef {
77
let module = vm.new_module(MODULE_NAME, vm.ctx.new_dict());
78
extend_module(vm, &module);
0 commit comments