(self)
| 195 | print("Example 11") |
| 196 | class Student: |
| 197 | def __init__(self): |
| 198 | self._subjects = defaultdict(Subject) |
| 199 | |
| 200 | def get_subject(self, name): |
| 201 | return self._subjects[name] |
nothing calls this directly
no outgoing calls
no test coverage detected