(&mut self, obj: Option<PyStackRef>)
| 9306 | #[inline] |
| 9307 | #[track_caller] |
| 9308 | fn push_stackref_opt(&mut self, obj: Option<PyStackRef>) { |
| 9309 | match self.localsplus.stack_try_push(obj) { |
| 9310 | Ok(()) => {} |
| 9311 | Err(_e) => self.fatal("tried to push value onto stack but overflowed max_stackdepth"), |
| 9312 | } |
| 9313 | } |
| 9314 | |
| 9315 | #[inline] |
| 9316 | #[track_caller] // not a real track_caller but push_value is less useful for debugging |
no test coverage detected