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