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

Method readinto1

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

Source from the content-addressed store, hash-verified

363 return self._buffer.readinto(b)
364
365 def readinto1(self, b):
366 self._check_not_closed()
367 self._check_read("readinto1")
368 return self._buffer.readinto1(b)
369
370 def peek(self, n):
371 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