Method
__exit__
(
self,
exc_ty: type[BaseException] | None = None,
exc_val: BaseException | None = None,
exc_tb: TracebackType | None = None,
)
Source from the content-addressed store, hash-verified
| 230 | return self |
| 231 | |
| 232 | def __exit__( |
| 233 | self, |
| 234 | exc_ty: type[BaseException] | None = None, |
| 235 | exc_val: BaseException | None = None, |
| 236 | exc_tb: TracebackType | None = None, |
| 237 | ) -> None: |
| 238 | self.close() |
| 239 | |
| 240 | |
| 241 | class IPCServer(IPCBase): |
Callers
nothing calls this directly
Tested by
no test coverage detected