(
&self,
frame: FrameRef,
f: F,
)
| 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, |
no test coverage detected