Bug Fix: RedisList
slicing
This was the previous buggy behavior:
>>> a = RedisList((1, 66.25, 1234.5))
>>> del a[:0]
>>> a
[]
This is the current correct behavior:
>>> a = RedisList((1, 66.25, 1234.5))
>>> del a[:0]
>>> a
[1, 66.25, 1234.5]
What's Changed
- Use test Redis db (redis://localhost:6379/{1-15}) by @brainix in #328
- Upgrade requirements by @brainix in #329
- Unit test RedisDeque to compute moving average by @brainix in #330
- Fix bug in RedisList slicing by @brainix in #331
Full Changelog: v1.1.2...v1.1.3