MCPcopy Create free account
hub / github.com/PyMySQL/mysqlclient / __iter__

Method __iter__

src/MySQLdb/cursors.py:416–419  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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
422class CursorUseResultMixIn:

Callers

nothing calls this directly

Calls 1

_check_executedMethod · 0.80

Tested by

no test coverage detected