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

Method read1

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

Source from the content-addressed store, hash-verified

1448 return BufferedReader.peek(self, size)
1449
1450 def read1(self, size=-1):
1451 self.flush()
1452 return BufferedReader.read1(self, size)
1453
1454 def readinto1(self, b):
1455 self.flush()

Callers

nothing calls this directly

Calls 2

flushMethod · 0.45
read1Method · 0.45

Tested by

no test coverage detected