(self, attr)
| 2687 | |
| 2688 | |
| 2689 | def __getattribute__(self, attr): |
| 2690 | if attr in tuple.__dict__: |
| 2691 | raise AttributeError |
| 2692 | return tuple.__getattribute__(self, attr) |
| 2693 | |
| 2694 | |
| 2695 | def _get_call_arguments(self): |
no outgoing calls
no test coverage detected