(self)
| 211 | print("Example 12") |
| 212 | class Gradebook: |
| 213 | def __init__(self): |
| 214 | self._students = defaultdict(Student) |
| 215 | |
| 216 | def get_student(self, name): |
| 217 | return self._students[name] |
nothing calls this directly
no outgoing calls
no test coverage detected