projects
/
services
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9f5614
)
urllib3 bugfix
author
Kenneth Reitz
<me@kennethreitz.com>
Sat, 1 Oct 2011 10:04:41 +0000
(06:04 -0400)
committer
Kenneth Reitz
<me@kennethreitz.com>
Sat, 1 Oct 2011 10:04:41 +0000
(06:04 -0400)
requests/packages/urllib3/connectionpool.py
patch
|
blob
|
history
diff --git
a/requests/packages/urllib3/connectionpool.py
b/requests/packages/urllib3/connectionpool.py
index 92ce15403ab12a6b6882660ae83df753ae6e03e3..36ecfb5146d7bfc81679e7bce7a3be554c9eedb0 100644
(file)
--- a/
requests/packages/urllib3/connectionpool.py
+++ b/
requests/packages/urllib3/connectionpool.py
@@
-46,8
+46,8
@@
class VerifiedHTTPSConnection(HTTPSConnection):
SSL certification.
"""
- def __init__(self):
- HTTPSConnection.__init__()
+ def __init__(self
, **kwargs
):
+ HTTPSConnection.__init__(
self, **kwargs
)
self.cert_reqs = None
self.ca_certs = None