(self)
| 20 | # Python 3.5 |
| 21 | class MyClass: |
| 22 | def __init__(self): |
| 23 | self.alligator = "hatchling" |
| 24 | self.elephant = "calf" |
| 25 | |
| 26 | a = MyClass() |
| 27 | for key, value in a.__dict__.items(): |
nothing calls this directly
no outgoing calls
no test coverage detected