(self, name)
| 1015 | return self._frame.iter_builtins() |
| 1016 | |
| 1017 | def get_var_by_name(self, name): |
| 1018 | |
| 1019 | if self.is_optimized_out(): |
| 1020 | return None, None |
| 1021 | return self._frame.get_var_by_name(name) |
| 1022 | |
| 1023 | def filename(self): |
| 1024 | '''Get the path of the current Python source file, as a string''' |
nothing calls this directly
no test coverage detected