(self)
| 75 | return cursor._init(self._timeout).__await__() |
| 76 | |
| 77 | def __del__(self): |
| 78 | if self._state is not None: |
| 79 | self._state.detach() |
| 80 | self._connection._maybe_gc_stmt(self._state) |
| 81 | |
| 82 | |
| 83 | class BaseCursor(connresource.ConnectionResource): |
nothing calls this directly
no test coverage detected