summaryrefslogtreecommitdiff
path: root/redis/__init__.py
diff options
context:
space:
mode:
authorZac Bristow <zbristow@codeaurora.org>2019-09-20 15:20:08 -0700
committerAndy McCurdy <andy@andymccurdy.com>2019-10-10 14:10:16 -0700
commita03c12e5869469aeaf4016d75a883a1fceb992fd (patch)
treece24ae73f68ba2554798f6dd744f2a582fb7f0e5 /redis/__init__.py
parent29a5259f644da35baee25342dc097782527d854b (diff)
downloadredis-py-a03c12e5869469aeaf4016d75a883a1fceb992fd.tar.gz
Version 3.3.93.3.9
Fixes SSL read timeouts in Python 2.7 The ssl module in Python 2.7 raises timeouts as ssl.SSLError instead of socket.timeout. When these timeouts are encountered, the error will be re-raised as socket.timeout so it is handled appropriately by the connection.
Diffstat (limited to 'redis/__init__.py')
-rw-r--r--redis/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/__init__.py b/redis/__init__.py
index 9395147..2835a42 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -29,7 +29,7 @@ def int_or_str(value):
return value
-__version__ = '3.3.8'
+__version__ = '3.3.9'
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [