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

Method read1

Lib/mailbox.py:2020–2022  ·  view source on GitHub ↗

Read bytes.

(self, size=None)

Source from the content-addressed store, hash-verified

2018 return self._read(size, self._file.read)
2019
2020 def read1(self, size=None):
2021 """Read bytes."""
2022 return self._read(size, self._file.read1)
2023
2024 def readline(self, size=None):
2025 """Read a line."""

Callers

nothing calls this directly

Calls 1

_readMethod · 0.95

Tested by

no test coverage detected