-
Notifications
You must be signed in to change notification settings - Fork 2.6k
zscore throws exception for missing member #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Exception trace is: Traceback (most recent call last): |
Thanks for the bug report. This issue has been fixed in ab3061a |
… set that didn't exist. also made anal cleanup changes removing whitespace before colons!
Revert redis#8 and replace "redis" and "old valkey" with "server"
Redis documentation states that for missing members of zset it returns (nil). It's naturally to expect None on python's side.
Steps to reproduce:
r=Redis()
r.zadd('test', 'foo', 0)
r.zscore('test', 'bar')
The text was updated successfully, but these errors were encountered: