MCPcopy Index your code
hub / github.com/python/cpython / writerows

Method writerows

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

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls