pypi pottery 1.1.3
v1.1.3

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

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

Full Changelog: v1.1.2...v1.1.3

Don't miss a new pottery release

NewReleases is sending notifications on new releases.