MCPcopy Create free account
hub / github.com/PyMySQL/PyMySQL / _conv_row

Method _conv_row

pymysql/cursors.py:387–390  ·  view source on GitHub ↗
(self, row)

Source from the content-addressed store, hash-verified

385 self._rows = [self._conv_row(r) for r in self._rows]
386
387 def _conv_row(self, row):
388 if row is None:
389 return None
390 return self.dict_type(zip(self._fields, row))
391
392
393class DictCursor(DictCursorMixin, Cursor):

Callers 1

_do_get_resultMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected