(self, attr)
| 2680 | |
| 2681 | |
| 2682 | def __getattribute__(self, attr): |
| 2683 | if attr in tuple.__dict__: |
| 2684 | raise AttributeError |
| 2685 | return tuple.__getattribute__(self, attr) |
| 2686 | |
| 2687 | |
| 2688 | def _get_call_arguments(self): |
no outgoing calls
no test coverage detected