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