Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ read
Method
read
Lib/_pyio.py:1350–1353 ·
view source on GitHub ↗
(self, size=-1)
Source
from the content-addressed store, hash-verified
1348
self.writer = BufferedWriter(writer, buffer_size)
1349
1350
def
read(self, size=-1):
1351
if
size is None:
1352
size = -1
1353
return
self.reader.read(size)
1354
1355
def
readinto(self, b):
1356
return
self.reader.readinto(b)
Callers
nothing calls this directly
Calls
1
read
Method · 0.45
Tested by
no test coverage detected