Close the response and release the connection. Automatically called if the response body is read to completion.
(self)
| 73 | self.close() |
| 74 | |
| 75 | def close(self) -> None: |
| 76 | """ |
| 77 | Close the response and release the connection. |
| 78 | |
| 79 | Automatically called if the response body is read to completion. |
| 80 | """ |
| 81 | self.response.close() |
| 82 | |
| 83 | |
| 84 | class AsyncStream(Generic[_T]): |
no outgoing calls