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

Method with_frame_untraced

crates/vm/src/vm/mod.rs:1570–1576  ·  view source on GitHub ↗
(
        &self,
        frame: FrameRef,
        f: F,
    )

Source from the content-addressed store, hash-verified

1568 }
1569
1570 pub(crate) fn with_frame_untraced<R, F: FnOnce(FrameRef) -> PyResult<R>>(
1571 &self,
1572 frame: FrameRef,
1573 f: F,
1574 ) -> PyResult<R> {
1575 self.with_frame_impl(frame, None, false, f)
1576 }
1577
1578 fn with_frame_impl<R, F: FnOnce(FrameRef) -> PyResult<R>>(
1579 &self,

Calls 1

with_frame_implMethod · 0.80

Tested by

no test coverage detected