We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e9cc01 commit 791f482Copy full SHA for 791f482
redis/__init__.py
@@ -37,7 +37,7 @@ def int_or_str(value):
37
return value
38
39
40
-__version__ = "4.0.1"
+__version__ = "4.0.2"
41
42
43
VERSION = tuple(map(int_or_str, __version__.split('.')))
redis/connection.py
@@ -9,7 +9,6 @@
9
import os
10
import socket
11
import threading
12
-import warnings
13
import weakref
14
15
from redis.exceptions import (
@@ -67,9 +66,6 @@
67
66
# only use byte buffer if hiredis supports it
68
if not HIREDIS_SUPPORTS_BYTE_BUFFER:
69
HIREDIS_USE_BYTE_BUFFER = False
70
-else:
71
- msg = "redis-py works best with hiredis. Please consider installing"
72
- warnings.warn(msg)
73
74
SYM_STAR = b'*'
75
SYM_DOLLAR = b'$'
0 commit comments