fix SSL problem#269
Conversation
There was a problem hiding this comment.
Change to !disable_ssl_certificate_validation.
There was a problem hiding this comment.
so what if disable_ssl_certificate_validation=None
There was a problem hiding this comment.
The default is False, so that means someone would have to have intentionally passed in None, which to me falls into the realm of a personal problem, I'd much rather have readable code.
There was a problem hiding this comment.
Besides which I don't think that even works:
$ python3.2
Python 3.2.3 (default, Feb 27 2014, 21:31:18)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
None ^ True
Traceback (most recent call last):
File "", line 1, in
TypeError: unsupported operand type(s) for ^: 'NoneType' and 'bool'
|
As the modification of !disable_ssl_certificate_validation, I got following error when I try to install: |
|
You probably want |
|
There is also #289 , which attributes the original author. |
fix issue 173. originated by kvvier(https://code.google.com/u/kvvier/) and verified for python3.3 (win) by (https://code.google.com/u/111191101025126589579/), and me for python3.4 (linux)