Skip to content
This repository has been archived by the owner on Dec 27, 2021. It is now read-only.

Commit

Permalink
Add support for [b]zpopmin, [b]zpopmax (python#4742)
Browse files Browse the repository at this point in the history
  • Loading branch information
wavenator authored Nov 3, 2020
1 parent 27c1616 commit 92911e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions third_party/2and3/redis/client.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,10 @@ class Redis(object):
def zincrby(self, name, value, amount=...): ...
def zinterstore(self, dest, keys, aggregate=...): ...
def zlexcount(self, name, min, max): ...
def zpopmax(self, name, count=...): ...
def zpopmin(self, name, count=...): ...
def bzpopmax(self, keys, timeout=...): ...
def bzpopmin(self, keys, timeout=...): ...
def zrange(self, name, start, end, desc=..., withscores=..., score_cast_func=...): ...
def zrangebylex(self, name, min, max, start=..., num=...): ...
def zrangebyscore(self, name, min, max, start=..., num=..., withscores=..., score_cast_func=...): ...
Expand Down

0 comments on commit 92911e3

Please sign in to comment.