(self)
| 6 | return self |
| 7 | |
| 8 | def __next__(self): |
| 9 | if self.count < 5: |
| 10 | self.count += 1 |
| 11 | return self.count |
| 12 | raise StopIteration |
| 13 | |
| 14 | def __del__(self): |
| 15 | print("destroyed at", self.count) |
nothing calls this directly
no outgoing calls
no test coverage detected