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

Method __init__

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

Source from the content-addressed store, hash-verified

281
282class ReplayingConnection(Connection):
283 def __init__(self, protocol, host, port, *args, **kwds):
284 self.__file = self.openFile("r")
285 self.__protocol = protocol
286 self.__host = host
287 self.__port = port
288 self.__stream = False
289 self.response_headers = CaseInsensitiveDict()
290
291 self.__cnx = self._realConnection(host, port, *args, **kwds)
292
293 @property
294 def host(self):

Callers

nothing calls this directly

Calls 1

openFileMethod · 0.80

Tested by

no test coverage detected