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

Method values

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

Source from the content-addressed store, hash-verified

156
157 #[pymethod]
158 pub fn values(&self, vm: &VirtualMachine) -> PyResult {
159 let obj = self.to_object(vm)?;
160 vm.call_method(&obj, identifier!(vm, values).as_str(), ())
161 }
162
163 #[pymethod]
164 pub fn copy(&self, vm: &VirtualMachine) -> PyResult {

Callers 2

f_backMethod · 0.45
traverseMethod · 0.45

Calls 3

to_objectMethod · 0.45
call_methodMethod · 0.45
as_strMethod · 0.45

Tested by

no test coverage detected