(self)
| 73 | print("Example 8") |
| 74 | class MyClass: |
| 75 | def __init__(self): |
| 76 | self.alligator = "hatchling" |
| 77 | self.elephant = "calf" |
| 78 | |
| 79 | a = MyClass() |
| 80 | for key, value in a.__dict__.items(): |
nothing calls this directly
no outgoing calls
no test coverage detected