Explicitly close / kill this cursor.
(self)
| 86 | self._sock_mgr = None |
| 87 | |
| 88 | async def close(self) -> None: |
| 89 | """Explicitly close / kill this cursor.""" |
| 90 | await self._die_lock() |
| 91 | |
| 92 | async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None: |
| 93 | await self.close() |