Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
read1
Method · 0.45
read1
Method · 0.45
_read_chunk
Method · 0.45
Calls
1
read
Method · 0.95
Tested by
no test coverage detected