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

Method read1

Lib/_pyio.py:946–949  ·  view source on GitHub ↗

This is the same as read.

(self, size=-1)

Source from the content-addressed store, hash-verified

944 return bytes(b)
945
946 def read1(self, size=-1):
947 """This is the same as read.
948 """
949 return self.read(size)
950
951 def write(self, b):
952 if isinstance(b, str):

Callers 3

read1Method · 0.45
read1Method · 0.45
_read_chunkMethod · 0.45

Calls 1

readMethod · 0.95

Tested by

no test coverage detected