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

Method readline

Lib/mailbox.py:2017–2019  ·  view source on GitHub ↗

Read a line.

(self, size=None)

Source from the content-addressed store, hash-verified

2015 return self._read(size, self._file.read1)
2016
2017 def readline(self, size=None):
2018 """Read a line."""
2019 return self._read(size, self._file.readline)
2020
2021 def readlines(self, sizehint=None):
2022 """Read multiple lines."""

Callers 11

__iter__Method · 0.95
_dump_messageMethod · 0.45
get_messageMethod · 0.45
get_bytesMethod · 0.45
get_fileMethod · 0.45
_generate_tocMethod · 0.45
_generate_tocMethod · 0.45
get_messageMethod · 0.45
get_bytesMethod · 0.45
_generate_tocMethod · 0.45
_install_messageMethod · 0.45

Calls 1

_readMethod · 0.95

Tested by

no test coverage detected