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

Method items

crates/vm/src/builtins/mappingproxy.rs:146–149  ·  view source on GitHub ↗
(&self, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

144
145 #[pymethod]
146 pub fn items(&self, vm: &VirtualMachine) -> PyResult {
147 let obj = self.to_object(vm)?;
148 vm.call_method(&obj, identifier!(vm, items).as_str(), ())
149 }
150
151 #[pymethod]
152 pub fn keys(&self, vm: &VirtualMachine) -> PyResult {

Callers

nothing calls this directly

Calls 3

to_objectMethod · 0.45
call_methodMethod · 0.45
as_strMethod · 0.45

Tested by

no test coverage detected