(&self)
| 1746 | } |
| 1747 | |
| 1748 | pub fn current_globals(&self) -> PyDictRef { |
| 1749 | self.current_frame() |
| 1750 | .expect("called current_globals but no frames on the stack") |
| 1751 | .globals |
| 1752 | .clone() |
| 1753 | } |
| 1754 | |
| 1755 | pub fn try_class(&self, module: &'static str, class: &'static str) -> PyResult<PyTypeRef> { |
| 1756 | let class = self |
no test coverage detected