Skip to content

Commit b864e5d

Browse files
authored
feat: Implement _imp._frozen_module_names (RustPython#5062)
1 parent 77939d2 commit b864e5d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

vm/src/stdlib/imp.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,14 @@ mod _imp {
155155
}
156156

157157
#[pyfunction]
158-
fn _frozen_module_names(_code: PyObjectRef) {
159-
// TODO:
158+
fn _frozen_module_names(vm: &VirtualMachine) -> PyResult<Vec<PyObjectRef>> {
159+
let names = vm
160+
.state
161+
.frozen
162+
.keys()
163+
.map(|&name| vm.ctx.new_str(name).into())
164+
.collect();
165+
Ok(names)
160166
}
161167

162168
#[allow(clippy::type_complexity)]

0 commit comments

Comments
 (0)