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

Method readinto

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

Source from the content-addressed store, hash-verified

1459 return BufferedReader.read(self, size)
1460
1461 def readinto(self, b):
1462 self.flush()
1463 return BufferedReader.readinto(self, b)
1464
1465 def peek(self, size=0):
1466 self.flush()

Callers

nothing calls this directly

Calls 2

flushMethod · 0.45
readintoMethod · 0.45

Tested by

no test coverage detected