MCPcopy Index your code
hub / github.com/docker/docker-py / __init__

Method __init__

docker/transport/npipeconn.py:15–20  ·  view source on GitHub ↗
(self, npipe_path, timeout=60)

Source from the content-addressed store, hash-verified

13
14class NpipeHTTPConnection(urllib3.connection.HTTPConnection):
15 def __init__(self, npipe_path, timeout=60):
16 super().__init__(
17 'localhost', timeout=timeout
18 )
19 self.npipe_path = npipe_path
20 self.timeout = timeout
21
22 def connect(self):
23 sock = NpipeSocket()

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected