(&mut self, obj: &PyObject)
| 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) { |
nothing calls this directly
no test coverage detected