MCPcopy Create free account
hub / github.com/PyMySQL/PyMySQL / __next__

Method __next__

pymysql/cursors.py:363–367  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

361 return self
362
363 def __next__(self):
364 row = self.fetchone()
365 if row is None:
366 raise StopIteration
367 return row
368
369
370class DictCursorMixin:

Callers 1

Calls 1

fetchoneMethod · 0.95

Tested by 1