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

Function ipow

crates/vm/src/stdlib/_operator.rs:294–296  ·  view source on GitHub ↗
(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

292
293 #[pyfunction]
294 fn ipow(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult {
295 vm._ipow(&a, &b, vm.ctx.none.as_object())
296 }
297
298 #[pyfunction]
299 fn irshift(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult {

Callers

nothing calls this directly

Calls 1

as_objectMethod · 0.45

Tested by

no test coverage detected