(&self, depth: u32)
| 9571 | #[inline] |
| 9572 | #[track_caller] |
| 9573 | fn nth_value(&self, depth: u32) -> &PyObject { |
| 9574 | let idx = self.localsplus.stack_len() - depth as usize - 1; |
| 9575 | match self.localsplus.stack_index(idx) { |
| 9576 | Some(obj) => obj.as_object(), |
| 9577 | None => unsafe { core::hint::unreachable_unchecked() }, |
| 9578 | } |
| 9579 | } |
| 9580 | |
| 9581 | #[cold] |
| 9582 | #[inline(never)] |
no test coverage detected