(&mut self)
| 9364 | /// Automatically promotes borrowed refs to owned. |
| 9365 | #[inline] |
| 9366 | fn pop_value_opt(&mut self) -> Option<PyObjectRef> { |
| 9367 | self.pop_stackref_opt().map(|sr| sr.to_pyobj()) |
| 9368 | } |
| 9369 | |
| 9370 | #[inline] |
| 9371 | #[track_caller] |
no test coverage detected