(&mut self)
| 9344 | /// Pop a raw stackref from the stack, returning None if the stack slot is NULL. |
| 9345 | #[inline] |
| 9346 | fn pop_stackref_opt(&mut self) -> Option<PyStackRef> { |
| 9347 | if self.localsplus.stack_is_empty() { |
| 9348 | self.fatal("tried to pop from empty stack"); |
| 9349 | } |
| 9350 | self.localsplus.stack_pop() |
| 9351 | } |
| 9352 | |
| 9353 | /// Pop a raw stackref from the stack. Panics if NULL. |
| 9354 | #[inline] |
no test coverage detected