MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / readinto

Method readinto

tools/python-3.11.9-amd64/Lib/bz2.py:178–184  ·  view source on GitHub ↗

Read bytes into b. Returns the number of bytes read (0 for EOF).

(self, b)

Source from the content-addressed store, hash-verified

176 return self._buffer.read1(size)
177
178 def readinto(self, b):
179 """Read bytes into b.
180
181 Returns the number of bytes read (0 for EOF).
182 """
183 self._check_can_read()
184 return self._buffer.readinto(b)
185
186 def readline(self, size=-1):
187 """Read a line of uncompressed bytes from the file.

Callers 1

file_digestFunction · 0.45

Calls 1

_check_can_readMethod · 0.80

Tested by

no test coverage detected