diff options
Diffstat (limited to 'redis/connection.py')
-rwxr-xr-x | redis/connection.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/redis/connection.py b/redis/connection.py index bf892e9..2323365 100755 --- a/redis/connection.py +++ b/redis/connection.py @@ -1100,12 +1100,6 @@ class ConnectionPool(object): repr(self.connection_class(**self.connection_kwargs)), ) - def __eq__(self, other): - return ( - isinstance(other, self.__class__) - and self.connection_kwargs == other.connection_kwargs - ) - def reset(self): self._lock = threading.RLock() self._created_connections = 0 |