From 3837e0d7bbe93622ce9ee40d754c630070e4f8e0 Mon Sep 17 00:00:00 2001 From: Chayim Date: Tue, 9 Nov 2021 13:14:19 +0200 Subject: Docstring improvements for Redis class (#1675) --- redis/client.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/redis/client.py b/redis/client.py index 935d9dd..f2f1eed 100755 --- a/redis/client.py +++ b/redis/client.py @@ -613,8 +613,10 @@ class Redis(RedisModuleCommands, CoreCommands, object): This abstract class provides a Python interface to all Redis commands and an implementation of the Redis protocol. - Connection and Pipeline derive from this, implementing how - the commands are sent and received to the Redis server + Pipelines derive from this, implementing how + the commands are sent and received to the Redis server. Based on + configuration, an instance will either use a ConnectionPool, or + Connection object to talk to redis. """ RESPONSE_CALLBACKS = { **string_keys_to_dict( -- cgit v1.2.1