(self)
| 445 | return generator() |
| 446 | |
| 447 | def __bool__(self): |
| 448 | self._fetch_all() |
| 449 | return bool(self._result_cache) |
| 450 | |
| 451 | def __getitem__(self, k): |
| 452 | """Retrieve an item or slice from the set of results.""" |
nothing calls this directly
no test coverage detected