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

Method write

Lib/codecs.py:846–849  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

844 return self
845
846 def write(self, data):
847
848 data, bytesdecoded = self.decode(data, self.errors)
849 return self.writer.write(data)
850
851 def writelines(self, list):
852

Callers 1

test_writeMethod · 0.95

Calls 2

decodeMethod · 0.45
writeMethod · 0.45

Tested by 1

test_writeMethod · 0.76