Method
_request
(
self, method: str, path: StrOrURL, **kwargs: Any
)
Source from the content-addressed store, hash-verified
| 342 | return self._server.make_url(path) |
| 343 | |
| 344 | async def _request( |
| 345 | self, method: str, path: StrOrURL, **kwargs: Any |
| 346 | ) -> ClientResponse: |
| 347 | resp = await self._session.request(method, self.make_url(path), **kwargs) |
| 348 | # save it to close later |
| 349 | self._responses.append(resp) |
| 350 | return resp |
| 351 | |
| 352 | if sys.version_info >= (3, 11) and TYPE_CHECKING: |
| 353 | |
Tested by
no test coverage detected