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

Method readinto

Lib/gzip.py:362–365  ·  view source on GitHub ↗
(self, b)

Source from the content-addressed store, hash-verified

360 return self._buffer.read1(size)
361
362 def readinto(self, b):
363 self._check_not_closed()
364 self._check_read("readinto")
365 return self._buffer.readinto(b)
366
367 def readinto1(self, b):
368 self._check_not_closed()

Callers

nothing calls this directly

Calls 2

_check_readMethod · 0.95
_check_not_closedMethod · 0.80

Tested by

no test coverage detected