Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/PyMySQL/PyMySQL
/ _conv_row
Method
_conv_row
pymysql/cursors.py:383–386 ·
view source on GitHub ↗
(self, row)
Source
from the content-addressed store, hash-verified
381
self._rows = [self._conv_row(r)
for
r in self._rows]
382
383
def
_conv_row(self, row):
384
if
row is None:
385
return
None
386
return
self.dict_type(zip(self._fields, row))
387
388
389
class
DictCursor(DictCursorMixin, Cursor):
Callers
1
_do_get_result
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected