Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PyMySQL/PyMySQL
/ _conv_row
Method
_conv_row
pymysql/cursors.py:388–391 ·
view source on GitHub ↗
(self, row)
Source
from the content-addressed store, hash-verified
386
self._rows = [self._conv_row(r)
for
r in self._rows]
387
388
def
_conv_row(self, row):
389
if
row is None:
390
return
None
391
return
self.dict_type(zip(self._fields, row))
392
393
394
class
DictCursor(DictCursorMixin, Cursor):
Callers
1
_do_get_result
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected