We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ca5849 commit afbc9fdCopy full SHA for afbc9fd
requests_unixsocket/adapters.py
@@ -1,3 +1,7 @@
1
+# This file contains code that was adapted from some code from docker-py
2
+# (Apache License 2.0)
3
+# https://github.com/docker/docker-py/blob/master/docker/transport/unixconn.py
4
+
5
import socket
6
7
from requests.adapters import HTTPAdapter
@@ -15,8 +19,7 @@
15
19
16
20
from .settings import default_settings
17
21
18
-# The following was adapted from some code from docker-py
-# https://github.com/docker/docker-py/blob/master/docker/transport/unixconn.py
22
23
class UnixHTTPConnection(httplib.HTTPConnection, object):
24
25
def __init__(self, url, timeout=60, settings=None):
0 commit comments