summaryrefslogtreecommitdiff
path: root/src/urllib3/connectionpool.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/urllib3/connectionpool.py')
-rw-r--r--src/urllib3/connectionpool.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/urllib3/connectionpool.py b/src/urllib3/connectionpool.py
index 7dfb846e..2479405b 100644
--- a/src/urllib3/connectionpool.py
+++ b/src/urllib3/connectionpool.py
@@ -316,7 +316,6 @@ class HTTPConnectionPool(ConnectionPool, RequestMethods):
# self.pool is None.
pass
except queue.Full:
-
# Connection never got put back into the pool, close it.
if conn:
conn.close()
@@ -1001,7 +1000,6 @@ class HTTPSConnectionPool(HTTPConnectionPool):
ca_cert_dir: str | None = None,
**conn_kw: typing.Any,
) -> None:
-
super().__init__(
host,
port,