(self, key: str)
| 604 | return self.manager[key].impl |
| 605 | |
| 606 | def _get_pending_mutation(self, key: str) -> PendingCollection: |
| 607 | if key not in self._pending_mutations: |
| 608 | self._pending_mutations[key] = PendingCollection() |
| 609 | return self._pending_mutations[key] |
| 610 | |
| 611 | def __getstate__(self) -> Dict[str, Any]: |
| 612 | state_dict: Dict[str, Any] = { |
no test coverage detected