summaryrefslogtreecommitdiff
path: root/redis/connection.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/connection.py')
-rwxr-xr-xredis/connection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/connection.py b/redis/connection.py
index 46d3b20..e753bcb 100755
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -34,9 +34,9 @@ try:
except ImportError:
ssl_available = False
-if ssl_available:
+if ssl_available and hasattr(ssl, 'SSLWantReadError'):
# note that when using nonblocking sockets over ssl, the ssl module
- # raises its own exceptions rather than the normal BlockingIOError
+ # in python > 2.7.9 raises its own exceptions rather than BlockingIOError
blocking_exceptions = (
BlockingIOError,
ssl.SSLWantReadError,