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

Method __init__

docker/transport/npipeconn.py:30–35  ·  view source on GitHub ↗
(self, npipe_path, timeout=60, maxsize=10)

Source from the content-addressed store, hash-verified

28
29class NpipeHTTPConnectionPool(urllib3.connectionpool.HTTPConnectionPool):
30 def __init__(self, npipe_path, timeout=60, maxsize=10):
31 super().__init__(
32 'localhost', timeout=timeout, maxsize=maxsize
33 )
34 self.npipe_path = npipe_path
35 self.timeout = timeout
36
37 def _new_conn(self):
38 return NpipeHTTPConnection(

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected