(self, obj)
| 737 | return None |
| 738 | |
| 739 | def get_dictionary(self, obj): |
| 740 | ret = {} |
| 741 | ret["__internals__"] = defaultResolver.get_dictionary(obj) |
| 742 | ret["stack"] = self.get_frame_stack(obj) |
| 743 | ret["f_locals"] = obj.f_locals |
| 744 | return ret |
| 745 | |
| 746 | def get_frame_stack(self, frame): |
| 747 | ret = [] |
nothing calls this directly
no test coverage detected