summaryrefslogtreecommitdiff
path: root/redis/__init__.py
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2019-07-30 15:14:32 -0700
committerAndy McCurdy <andy@andymccurdy.com>2019-07-30 15:14:32 -0700
commit885ce770856a1ee5ebc51d7c5390c88fb62bc93e (patch)
treeea1f83c8382f289f96cdf7007c891d2835ff0699 /redis/__init__.py
parent6b6e394ccb7199cb5e0d2e8192dc904aa0a8b347 (diff)
downloadredis-py-885ce770856a1ee5ebc51d7c5390c88fb62bc93e.tar.gz
version 3.3.4, more specifically identify nonblocking read errors
versions 3.3.1, 3.3.2 and 3.3.3 could potentially hide ConnectionErrors on Python 2.7. This change accurately identifies errors by both exception class and errno to determine whether a nonblocking socket can be read
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 2d586c6..71bc217 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -29,7 +29,7 @@ def int_or_str(value):
return value
-__version__ = '3.3.3'
+__version__ = '3.3.4'
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [