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

Method read

Lib/_pyio.py:1436–1440  ·  view source on GitHub ↗
(self, size=None)

Source from the content-addressed store, hash-verified

1434 return BufferedWriter.truncate(self, pos)
1435
1436 def read(self, size=None):
1437 if size is None:
1438 size = -1
1439 self.flush()
1440 return BufferedReader.read(self, size)
1441
1442 def readinto(self, b):
1443 self.flush()

Callers

nothing calls this directly

Calls 2

flushMethod · 0.45
readMethod · 0.45

Tested by

no test coverage detected