(self)
| 363 | return self._get_db().store_result() |
| 364 | |
| 365 | def _post_get_result(self): |
| 366 | self._rows = self._fetch_row(0) |
| 367 | self._result = None |
| 368 | |
| 369 | def fetchone(self): |
| 370 | """Fetches a single row from the cursor. None indicates that |
nothing calls this directly
no test coverage detected