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

Method readline

tests/Framework.py:423–428  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

421 self.__file.write(string)
422
423 def readline(self) -> str:
424 self.__line += 1
425 line = self.__file.readline()
426 if isinstance(line, bytes):
427 line = line.decode("utf-8")
428 return line.strip()
429
430 @property
431 def line_number(self):

Callers 3

__readNextRequestMethod · 0.80
__request_callbackMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected