(self)
| 69 | self.close() |
| 70 | |
| 71 | def _get_db(self): |
| 72 | if not self.connection: |
| 73 | raise err.ProgrammingError("Cursor closed") |
| 74 | return self.connection |
| 75 | |
| 76 | def _check_executed(self): |
| 77 | if not self._executed: |
no outgoing calls
no test coverage detected