pypi pottery 1.1.4
v1.1.4

latest releases: 3.0.0, 2.3.7, 2.3.6...
3 years ago

Bug Fix: RedisList slicing

This was the previous buggy behavior:

>>> list_ = RedisList([1, 2, 3, 4, 5])
>>> list_[len(list_)-1:3-1:-1]
[]

This is the current correct behavior:

>>> list_ = RedisList([1, 2, 3, 4, 5])
>>> list_[len(list_)-1:3-1:-1]
[5, 4]

What's Changed

Full Changelog: v1.1.3...v1.1.4

Don't miss a new pottery release

NewReleases is sending notifications on new releases.