(self, obj, attribute)
| 725 | """ |
| 726 | |
| 727 | def resolve(self, obj, attribute): |
| 728 | if attribute == "__internals__": |
| 729 | return defaultResolver.get_dictionary(obj) |
| 730 | |
| 731 | if attribute == "stack": |
| 732 | return self.get_frame_stack(obj) |
| 733 | |
| 734 | if attribute == "f_locals": |
| 735 | return obj.f_locals |
| 736 | |
| 737 | return None |
| 738 | |
| 739 | def get_dictionary(self, obj): |
| 740 | ret = {} |
nothing calls this directly
no test coverage detected