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

Method write

Lib/_pyio.py:1377–1378  ·  view source on GitHub ↗
(self, b)

Source from the content-addressed store, hash-verified

1375 return self.reader.readinto(b)
1376
1377 def write(self, b):
1378 return self.writer.write(b)
1379
1380 def peek(self, size=0):
1381 return self.reader.peek(size)

Callers

nothing calls this directly

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected