Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
365
class
DictCursorMixin:
Callers
1
test_cursor_is_iterator
Method · 0.80
Calls
1
fetchone
Method · 0.95
Tested by
1
test_cursor_is_iterator
Method · 0.64