Return the full namespace (dbname.collname) for this cursor.
(self)
| 40 | |
| 41 | @abstractmethod |
| 42 | def _get_namespace(self) -> str: |
| 43 | """Return the full namespace (dbname.collname) for this cursor.""" |
| 44 | ... |
| 45 | |
| 46 | def __del__(self) -> None: |
| 47 | self._die_no_lock() |