Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ pending_stack_pops
Method
pending_stack_pops
crates/vm/src/frame.rs:845–847 ·
view source on GitHub ↗
(&self)
Source
from the content-addressed store, hash-verified
843
}
844
845
pub(crate) fn pending_stack_pops(&self) -> u32 {
846
self.pending_stack_pops.load(Relaxed)
847
}
848
849
pub(crate) fn set_pending_stack_pops(&self, val: u32) {
850
self.pending_stack_pops.store(val, Relaxed);
Callers
1
run
Method · 0.80
Calls
1
load
Method · 0.45
Tested by
no test coverage detected