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

Method open

tests/Framework.py:408–410  ·  view source on GitHub ↗
(filename: str, mode: str, encoding: str)

Source from the content-addressed store, hash-verified

406class ReplayDataFile:
407 @staticmethod
408 def open(filename: str, mode: str, encoding: str) -> ReplayDataFile:
409 file = open(filename, mode, encoding=encoding)
410 return ReplayDataFile(filename, file)
411
412 def __init__(self, filename: str, file):
413 self.__filename = filename

Callers 3

__init__Method · 0.80
indexMethod · 0.80
__openFileMethod · 0.80

Calls 1

ReplayDataFileClass · 0.85

Tested by

no test coverage detected