(self, key: str)
| 601 | return self.manager[key].impl.get_history(self, self.dict, passive) |
| 602 | |
| 603 | def get_impl(self, key: str) -> _AttributeImpl: |
| 604 | return self.manager[key].impl |
| 605 | |
| 606 | def _get_pending_mutation(self, key: str) -> PendingCollection: |
| 607 | if key not in self._pending_mutations: |
no outgoing calls
no test coverage detected