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

Method __init__

tests/Framework.py:201–210  ·  view source on GitHub ↗
(self, protocol, host, port, *args, **kwds)

Source from the content-addressed store, hash-verified

199
200class RecordingConnection(Connection):
201 def __init__(self, protocol, host, port, *args, **kwds):
202 self.__file = self.openFile("w")
203 # write operations make the assumption that the file is not in binary mode
204 assert isinstance(self.__file, ReplayDataFile)
205 self.__request = None
206 self.__protocol = protocol
207 self.__host = host
208 self.__port = port
209 self.__cnx = self._realConnection(host, port, *args, **kwds)
210 self.__stream = False
211
212 @property
213 def host(self):

Callers

nothing calls this directly

Calls 1

openFileMethod · 0.80

Tested by

no test coverage detected