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