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

Method readinto

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

Source from the content-addressed store, hash-verified

1440 return BufferedReader.read(self, size)
1441
1442 def readinto(self, b):
1443 self.flush()
1444 return BufferedReader.readinto(self, b)
1445
1446 def peek(self, size=0):
1447 self.flush()

Callers

nothing calls this directly

Calls 2

flushMethod · 0.45
readintoMethod · 0.45

Tested by

no test coverage detected