(self, instance, instance_type)
| 210 | |
| 211 | print("Example 15") |
| 212 | def __get__(self, instance, instance_type): |
| 213 | if instance is None: |
| 214 | return self |
| 215 | return getattr(instance, self.internal_name) |
| 216 | |
| 217 | def __set__(self, instance, value): |
| 218 | if not (0 <= value <= 100): |
nothing calls this directly
no outgoing calls
no test coverage detected