(self)
| 186 | ' '.join(attrs), id(self)) |
| 187 | |
| 188 | def __del__(self): |
| 189 | if self._state is not None: |
| 190 | self._state.detach() |
| 191 | self._connection._maybe_gc_stmt(self._state) |
| 192 | |
| 193 | |
| 194 | class CursorIterator(BaseCursor): |
nothing calls this directly
no test coverage detected