(
self,
exc_type: type[BaseException] | None = None,
exc_value: BaseException | None = None,
traceback: TracebackType | None = None,
)
| 363 | return self |
| 364 | |
| 365 | async def __aexit__( |
| 366 | self, |
| 367 | exc_type: type[BaseException] | None = None, |
| 368 | exc_value: BaseException | None = None, |
| 369 | traceback: TracebackType | None = None, |
| 370 | ) -> None: |
| 371 | with map_httpcore_exceptions(): |
| 372 | await self._pool.__aexit__(exc_type, exc_value, traceback) |
| 373 | |
| 374 | async def handle_async_request( |
| 375 | self, |
nothing calls this directly
no test coverage detected