mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-22 20:01:29 +08:00
Add support for [b]zpopmin, [b]zpopmax (#4742)
This commit is contained in:
4
third_party/2and3/redis/client.pyi
vendored
4
third_party/2and3/redis/client.pyi
vendored
@@ -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=...): ...
|
||||
|
||||
Reference in New Issue
Block a user