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

Method readinto1

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

Source from the content-addressed store, hash-verified

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