(
self, size: Optional[int] = None
)
| 1898 | self._soft_close() |
| 1899 | |
| 1900 | def _fetchmany_impl( |
| 1901 | self, size: Optional[int] = None |
| 1902 | ) -> List[_InterimRowType[Row[Unpack[TupleAny]]]]: |
| 1903 | if self._hard_closed: |
| 1904 | self._raise_hard_closed() |
| 1905 | |
| 1906 | return list(itertools.islice(self.iterator, 0, size)) |
| 1907 | |
| 1908 | |
| 1909 | def null_result() -> IteratorResult[Any]: |
nothing calls this directly
no test coverage detected