(self)
| 408 | self.rownumber = r |
| 409 | |
| 410 | def __iter__(self): |
| 411 | self._check_executed() |
| 412 | result = self.rownumber and self._rows[self.rownumber:] or self._rows |
| 413 | return iter(result) |
| 414 | |
| 415 | |
| 416 | class CursorUseResultMixIn(object): |
nothing calls this directly
no test coverage detected