Skip to content

Commit 3837e0d

Browse files
authored
Docstring improvements for Redis class (#1675)
1 parent d93b5f3 commit 3837e0d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

redis/client.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,10 @@ class Redis(RedisModuleCommands, CoreCommands, object):
613613
This abstract class provides a Python interface to all Redis commands
614614
and an implementation of the Redis protocol.
615615
616-
Connection and Pipeline derive from this, implementing how
617-
the commands are sent and received to the Redis server
616+
Pipelines derive from this, implementing how
617+
the commands are sent and received to the Redis server. Based on
618+
configuration, an instance will either use a ConnectionPool, or
619+
Connection object to talk to redis.
618620
"""
619621
RESPONSE_CALLBACKS = {
620622
**string_keys_to_dict(

0 commit comments

Comments
 (0)