MCPcopy Index your code
hub / github.com/RustPython/RustPython / writerows

Method writerows

Lib/csv.py:227–228  ·  view source on GitHub ↗
(self, rowdicts)

Source from the content-addressed store, hash-verified

225 return self.writer.writerow(self._dict_to_list(rowdict))
226
227 def writerows(self, rowdicts):
228 return self.writer.writerows(map(self._dict_to_list, rowdicts))
229
230 __class_getitem__ = classmethod(types.GenericAlias)
231

Calls

no outgoing calls