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

Method read

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

Source from the content-addressed store, hash-verified

1453 return BufferedWriter.truncate(self, pos)
1454
1455 def read(self, size=None):
1456 if size is None:
1457 size = -1
1458 self.flush()
1459 return BufferedReader.read(self, size)
1460
1461 def readinto(self, b):
1462 self.flush()

Callers

nothing calls this directly

Calls 2

flushMethod · 0.45
readMethod · 0.45

Tested by

no test coverage detected