v2.3.5
Bug Fix: Don't allow a RedisDeque
to equal a RedisList
...
...even if they're both on the same Redis instance and have the same key.
Before this release:
>>> from pottery import RedisDeque, RedisList
>>> RedisDeque(key='videos:dicts') == RedisList(key='videos:dicts')
True
As of this release:
>>> from pottery import RedisDeque, RedisList
>>> RedisDeque(key='videos:dicts') == RedisList(key='videos:dicts')
False
What's Changed
- Make minor code cleanups by @brainix in #575
- Don't allow a RedisDeque to equal a RedisList... by @brainix in #576
Full Changelog: v2.3.4...v2.3.5