diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-12-04 08:36:17 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-12-04 08:36:17 +0100 |
commit | c88b7d5fa934e25ae426d8b918d6eb8de414682d (patch) | |
tree | 026316ec0d36d605f482b4162944288d8a1b6d4d | |
parent | d03cd2225c7c9d7cea3b441942555749c64f449b (diff) | |
download | astroid-git-c88b7d5fa934e25ae426d8b918d6eb8de414682d.tar.gz |
Add missing _ssl constant. Close PyCQA/pylint#2629
-rw-r--r-- | astroid/brain/brain_ssl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/astroid/brain/brain_ssl.py b/astroid/brain/brain_ssl.py index a42e04c7..44b2bb51 100644 --- a/astroid/brain/brain_ssl.py +++ b/astroid/brain/brain_ssl.py @@ -66,6 +66,7 @@ def ssl_transform(): from _ssl import HAS_SNI, HAS_ECDH, HAS_NPN, HAS_ALPN from _ssl import _OPENSSL_API_VERSION from _ssl import PROTOCOL_SSLv23, PROTOCOL_TLSv1, PROTOCOL_TLSv1_1, PROTOCOL_TLSv1_2 + from _ssl import PROTOCOL_TLS """ ) |