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

Method readinto

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

Source from the content-addressed store, hash-verified

1372 return self.reader.read(size)
1373
1374 def readinto(self, b):
1375 return self.reader.readinto(b)
1376
1377 def write(self, b):
1378 return self.writer.write(b)

Callers

nothing calls this directly

Calls 1

readintoMethod · 0.45

Tested by

no test coverage detected