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

Method readinto

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

Source from the content-addressed store, hash-verified

358 return self._buffer.read1(size)
359
360 def readinto(self, b):
361 self._check_not_closed()
362 self._check_read("readinto")
363 return self._buffer.readinto(b)
364
365 def readinto1(self, b):
366 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