Method
__exit__
(
self,
exc_type: type[BaseException] | None,
exc_val: BaseException | None,
exc_tb: TracebackType | None,
)
Source from the content-addressed store, hash-verified
| 57 | self.to_update = to_update |
| 58 | |
| 59 | def __exit__( |
| 60 | self, |
| 61 | exc_type: type[BaseException] | None, |
| 62 | exc_val: BaseException | None, |
| 63 | exc_tb: TracebackType | None, |
| 64 | ) -> None: |
| 65 | d = self.dictionary |
| 66 | |
| 67 | for k in self.to_delete: |
| 68 | d.pop(k, None) |
| 69 | d.update(self.to_update) |
Callers
nothing calls this directly
Tested by
no test coverage detected