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

Method writelines

Lib/codecs.py:851–855  ·  view source on GitHub ↗
(self, list)

Source from the content-addressed store, hash-verified

849 return self.writer.write(data)
850
851 def writelines(self, list):
852
853 data = b''.join(list)
854 data, bytesdecoded = self.decode(data, self.errors)
855 return self.writer.write(data)
856
857 def reset(self):
858

Callers 1

test_writelinesMethod · 0.95

Calls 3

joinMethod · 0.45
decodeMethod · 0.45
writeMethod · 0.45

Tested by 1

test_writelinesMethod · 0.76