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

Method __next__

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

Source from the content-addressed store, hash-verified

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

Callers 1

Calls 1

fetchoneMethod · 0.95

Tested by 1