MCPcopy
hub / github.com/PyMySQL/PyMySQL / __next__

Method __next__

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

Source from the content-addressed store, hash-verified

356 return self
357
358 def __next__(self):
359 row = self.fetchone()
360 if row is None:
361 raise StopIteration
362 return row
363
364
365class DictCursorMixin:

Callers 1

Calls 1

fetchoneMethod · 0.95

Tested by 1