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

Method previous_frame

crates/vm/src/frame.rs:833–835  ·  view source on GitHub ↗

Get the previous frame pointer for signal-safe traceback walking.

(&self)

Source from the content-addressed store, hash-verified

831
832 /// Get the previous frame pointer for signal-safe traceback walking.
833 pub fn previous_frame(&self) -> *const Frame {
834 self.previous.load(atomic::Ordering::Relaxed)
835 }
836
837 pub fn lasti(&self) -> u32 {
838 self.lasti.load(Relaxed)

Callers 2

dump_live_framesFunction · 0.80
f_backMethod · 0.80

Calls 1

loadMethod · 0.45

Tested by

no test coverage detected