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

Method read1

Lib/_pyio.py:1469–1471  ·  view source on GitHub ↗
(self, size=-1)

Source from the content-addressed store, hash-verified

1467 return BufferedReader.peek(self, size)
1468
1469 def read1(self, size=-1):
1470 self.flush()
1471 return BufferedReader.read1(self, size)
1472
1473 def readinto1(self, b):
1474 self.flush()

Callers

nothing calls this directly

Calls 2

flushMethod · 0.45
read1Method · 0.45

Tested by

no test coverage detected