Skip to content

Releases: johnsyweb/python_sparse_list

Version 1

26 Feb 01:48
61cbfa3
Compare
Choose a tag to compare

Added

  • Flake8 Compliance

Changed

  • CI with GitHub Actions
  • Tests with pytest

Removed

  • Python 2 Support

Further compatibility with `list` and better sparseness

24 Sep 08:50
Compare
Choose a tag to compare
  • Check for matching list lengths in equality implementation #18 / #20 (@wetneb)
  • Slices containing default values do not have the correct length #19 / #20 (@wetneb)
  • __mul__ returns a SparseList and __delitem__ no longer has a hidden element when removing the tail #21 (@johnsyweb)

Fix deletion of empty slices

19 Aug 09:04
1010316
Compare
Choose a tag to compare

0.8 Retried

05 Aug 01:06
21a0454
Compare
Choose a tag to compare

I had some issues with Twine & PyPi

Deleting and returning slices...

04 Aug 10:39
3bd0491
Compare
Choose a tag to compare

This release addresses two issues raised by @wetneb.

#12

del my_list[a:b] now behaves like Python's builtin list class. (See #14)

#13

sparse_list[a:b] now returns a SparseList itself. (See #15)

Fixes slice assignment

15 Jun 04:41
Compare
Choose a tag to compare

Python 3 and Extended Slicing Support

11 Nov 13:04
Compare
Choose a tag to compare

It's been a long time coming but here's v0.6 with Python 3 and Extended Slicing Support.

Enjoy!