MCPcopy Index your code
hub / github.com/davispuh/MySQL-for-Python-3 / __iter__

Method __iter__

MySQLdb/cursors.py:410–413  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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
416class CursorUseResultMixIn(object):

Callers

nothing calls this directly

Calls 1

_check_executedMethod · 0.80

Tested by

no test coverage detected