summaryrefslogtreecommitdiff
path: root/redis/commands/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/commands/core.py')
-rw-r--r--redis/commands/core.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/redis/commands/core.py b/redis/commands/core.py
index 90997ff..0344e3a 100644
--- a/redis/commands/core.py
+++ b/redis/commands/core.py
@@ -2520,6 +2520,10 @@ class CoreCommands:
``offset`` and ``num`` are specified, then return a slice of the range.
Can't be provided when using ``bylex``.
"""
+ # Supports old implementation: need to support ``desc`` also for version < 6.2.0
+ if not byscore and not bylex and (offset is None and num is None) and desc:
+ return self.zrevrange(name, start, end, withscores,
+ score_cast_func)
return self._zrange('ZRANGE', None, name, start, end, desc, byscore,
bylex, withscores, score_cast_func, offset, num)