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

Method push_borrowed

crates/vm/src/frame.rs:9335–9337  ·  view source on GitHub ↗
(&mut self, obj: &PyObject)

Source from the content-addressed store, hash-verified

9333 #[track_caller]
9334 #[allow(dead_code)]
9335 unsafe fn push_borrowed(&mut self, obj: &PyObject) {
9336 self.push_stackref_opt(Some(unsafe { PyStackRef::new_borrowed(obj) }));
9337 }
9338
9339 #[inline]
9340 fn push_null(&mut self) {

Callers

nothing calls this directly

Calls 2

push_stackref_optMethod · 0.80
SomeClass · 0.50

Tested by

no test coverage detected