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

Method read1

Lib/mailbox.py:2013–2015  ·  view source on GitHub ↗

Read bytes.

(self, size=None)

Source from the content-addressed store, hash-verified

2011 return self._read(size, self._file.read)
2012
2013 def read1(self, size=None):
2014 """Read bytes."""
2015 return self._read(size, self._file.read1)
2016
2017 def readline(self, size=None):
2018 """Read a line."""

Callers

nothing calls this directly

Calls 1

_readMethod · 0.95

Tested by

no test coverage detected