MCPcopy 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
389class DictCursor(DictCursorMixin, Cursor):

Callers 1

_do_get_resultMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected