(&mut self, obj: PyObjectRef)
| 9321 | #[inline] |
| 9322 | #[track_caller] |
| 9323 | fn push_value(&mut self, obj: PyObjectRef) { |
| 9324 | self.push_stackref_opt(Some(PyStackRef::new_owned(obj))); |
| 9325 | } |
| 9326 | |
| 9327 | /// Push a borrowed reference onto the stack (no refcount increment). |
| 9328 | /// |
no test coverage detected