diff options
Diffstat (limited to 'redis/client.py')
-rwxr-xr-x | redis/client.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/redis/client.py b/redis/client.py index 040d131..dde701f 100755 --- a/redis/client.py +++ b/redis/client.py @@ -746,12 +746,6 @@ class Redis(object): def __repr__(self): return "%s<%s>" % (type(self).__name__, repr(self.connection_pool)) - def __eq__(self, other): - return ( - isinstance(other, self.__class__) - and self.connection_pool == other.connection_pool - ) - def set_response_callback(self, command, callback): "Set a custom Response Callback" self.response_callbacks[command] = callback |