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

Method args

crates/vm/src/stdlib/typevar.rs:483–489  ·  view source on GitHub ↗
(zelf: crate::PyRef<Self>, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

481
482 #[pygetset]
483 fn args(zelf: crate::PyRef<Self>, vm: &VirtualMachine) -> PyResult {
484 let self_obj: PyObjectRef = zelf.into();
485 let psa = ParamSpecArgs {
486 __origin__: self_obj,
487 };
488 Ok(psa.into_ref(&vm.ctx).into())
489 }
490
491 #[pygetset]
492 fn kwargs(zelf: crate::PyRef<Self>, vm: &VirtualMachine) -> PyResult {

Callers 2

sleepFunction · 0.45
set_fieldMethod · 0.45

Calls 1

into_refMethod · 0.45

Tested by

no test coverage detected