(self, *args, **kwargs)
| 78 | self._execute(BUILD_TABLE) |
| 79 | |
| 80 | def _execute(self, *args, **kwargs): |
| 81 | if not self._cx: |
| 82 | raise error(_ERR_CLOSED) |
| 83 | try: |
| 84 | return closing(self._cx.execute(*args, **kwargs)) |
| 85 | except sqlite3.Error as exc: |
| 86 | raise error(str(exc)) |
| 87 | |
| 88 | def __len__(self): |
| 89 | with self._execute(GET_SIZE) as cu: |
no test coverage detected