(self)
| 414 | self.rownumber = r |
| 415 | |
| 416 | def __iter__(self): |
| 417 | self._check_executed() |
| 418 | result = self.rownumber and self._rows[self.rownumber :] or self._rows |
| 419 | return iter(result) |
| 420 | |
| 421 | |
| 422 | class CursorUseResultMixIn: |
nothing calls this directly
no test coverage detected