Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
370
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