Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PyMySQL/mysqlclient
/ next
Method
next
src/MySQLdb/cursors.py:460–464 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
458
return
self
459
460
def
next(self):
461
row = self.fetchone()
462
if
row is None:
463
raise
StopIteration
464
return
row
465
466
__next__ = next
467
Callers
nothing calls this directly
Calls
1
fetchone
Method · 0.95
Tested by
no test coverage detected