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