(self, *args, **kwargs)
| 2785 | def test_super_args(): |
| 2786 | class SuperRecorder: |
| 2787 | def __init__(self, *args, **kwargs): |
| 2788 | self.super_args = args |
| 2789 | self.super_kwargs = kwargs |
| 2790 | |
| 2791 | class SuperHasTraits(HasTraits, SuperRecorder): |
| 2792 | i = Integer() |
nothing calls this directly
no outgoing calls
no test coverage detected