(&self)
| 1740 | } |
| 1741 | |
| 1742 | pub fn current_locals(&self) -> PyResult<ArgMapping> { |
| 1743 | self.current_frame() |
| 1744 | .expect("called current_locals but no frames on the stack") |
| 1745 | .locals(self) |
| 1746 | } |
| 1747 | |
| 1748 | pub fn current_globals(&self) -> PyDictRef { |
| 1749 | self.current_frame() |
no test coverage detected