MCPcopy Create free account
hub / github.com/PyMySQL/mysqlclient / _fetch_row

Method _fetch_row

src/MySQLdb/cursors.py:336–339  ·  view source on GitHub ↗
(self, size=1)

Source from the content-addressed store, hash-verified

334 return self.rowcount
335
336 def _fetch_row(self, size=1):
337 if not self._result:
338 return ()
339 return self._result.fetch_row(size, self._fetch_type)
340
341 def __iter__(self):
342 return iter(self.fetchone, None)

Callers 4

_post_get_resultMethod · 0.80
fetchoneMethod · 0.80
fetchmanyMethod · 0.80
fetchallMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected