(self)
| 50 | print("Example 1") |
| 51 | class MyObject: |
| 52 | def __init__(self): |
| 53 | self.public_field = 5 |
| 54 | self.__private_field = 10 |
| 55 | |
| 56 | def get_private_field(self): |
| 57 | return self.__private_field |
nothing calls this directly
no outgoing calls
no test coverage detected