- 2.4.0 (2021-05-16)
- 2.3.0 (2020-11-08)
- 2.2.2 (2020-06-07)
- 2.2.1 (2020-06-06)
- 2.2.0 (2020-06-06)
- 2.1.0 (2018-11-21)
- 2.0.5 (2018-09-03)
- 2.0.4 (2018-06-06)
- 2.0.3 (2018-05-31)
- 2.0.2 (2018-05-21)
- 2.0.1 (2018-05-18)
- 2.0.0 (2018-05-18)
- 1.5.10 (2018-04-21)
- 1.5.9 (2017-12-08)
- 1.5.8 (2017-12-08)
- 1.5.7 (2016-12-22)
- 1.5.6 (2016-12-09)
- 1.5.5 (2016-12-05)
- 1.5.4 (2016-10-16)
- 1.5.3 (2016-06-01)
- 1.5.2 (2016-05-28)
- 1.5.1 (2016-05-26)
- 1.5.0 (2016-05-26)
- 1.4.3 (2015-12-03)
- 1.4.2 (2015-10-20)
- 0.9.6 (2015-06-22)
- 0.9.5 (2015-03-16)
- 0.9.4 (2014-12-04)
- 0.9.3 (2014-11-30)
- 0.9.2 (2014-10-20)
- 0.9.1 (2014-09-20)
- 0.9.0 (2014-09-17)
- 0.8.5 (2014-08-11)
- 0.8.4 (2014-07-29)
- 0.8.3 (2014-07-07)
- 0.8.2 (2014-06-13)
- 0.8.1 (2014-05-08)
- 0.8.0 (2014-04-08)
- 0.7.0 (2014-04-02)
- 0.6.0 (2014-03-18)
- 0.5.0 (2014-03-14)
.. currentmodule:: sortedcontainers
API Changes
- Implement SortedDict methods: __or__, __ror__, and __ior__ per PEP 584.
Bugfixes
- Make sort order stable when updating with large iterables.
Miscellaneous
- Add "small slice" optimization to SortedList.__getitem__.
- Silence warning when testing SortedList.iloc.
Miscellaneous
- Fix a warning regarding classifiers in setup.py.
Miscellaneous
- Change SortedDict to avoid cycles for CPython reference counting.
Miscellaneous
- Small updates to docs and tests for Python 3.7.
Bugfixes
- Change imports for Abstract Base Classes to collections.abc to avoid warnings in Python 3.7.
Bugfixes
- SortedDict methods iterkeys, iteritems, itervalues, viewkeys, viewitems, and viewvalues are not implemented for Python 2. Attribute lookup now raises :exc:`AttributeError`.
API Changes
- Accessing SortedDict.iloc will emit DeprecationWarning.
Bugfixes
- SortedSet.__rsub__ erroneously reversed its arguments. The method has been removed in favor of the inherited Set.__rsub__ which has a correct implementation.
- :class:`SortedKeysView` and :class:`SortedValuesView` set-operations now return :class:`SortedSet` objects to better match the semantics of version 1.
Miscellaneous
- The source distribution no longer contains the docs and tests directories. If you need these, then please download an archive from Github. Version control is tagged with the version released to PyPI.
API Changes
- Add SortedDict.iloc for improved backwards compatibility with version 1.
Miscellaneous
- Rename Github repo from grantjenks/sorted_containers to grantjenks/python-sortedcontainers.
- Fix broken links in documentation.
Version 2 represents a significant update to the source base. The code has been refactored and modernized to embrace Python 3 semantics while also using autodoc in Sphinx for more maintainable documentation. The core design and algorithms are all the same. Sorted Containers still supports and is tested on Python 2 but primary development is now on Python 3.6.
Version 2 is developed on the master branch in the source repository and Version 1 of Sorted Containers will be maintained on branch v1.
Version 3 of Sorted Containers will be released sometime after January 1, 2020 and will drop support for Python 2.
At a high-level, changes can be categorized in three ways:
- :class:`SortedList` methods __setitem__, append, extend, and insert all now raise :exc:`NotImplementedError`. Use add or update instead. Though it's possible to implement these methods, they were confusing, inefficient and wrongly used by some users. Sorted list implementations that need the functionality are encouraged to do so through subclassing. Branch v1 contains a reference implementation.
- :class:`SortedDict` now uses Python 3 semantics for dict views. The iterkeys, iteritems, itervalues, viewkeys, viewitems, and viewvalues methods have all been removed. Use the keys, items, or values methods which now return sorted dict views. :class:`SortedKeysView` has also replaced SortedDict.iloc as a better interface for indexing.
- Method parameter names have changed to be more consistent with Python's built-in data types: val has changed to value, idx has changed to index, and that has changed to other.
API Changes
- :class:`SortedListWithKey` is deprecated. Use :class:`SortedKeyList` instead. The name SortedListWithKey remains as an alias for SortedKeyList. The alias will be removed in Version 3.
- sortedcontainers.sortedlist.LOAD has moved to SortedList.DEFAULT_LOAD_FACTOR so that derived classes can customize the value.
- SortedList._half and SortedList._dual have been removed. Use SortedList._load instead.
- :func:`SortedList.add` parameter val renamed to value.
- :func:`SortedList.__contains__` parameter val renamed to value.
- :func:`SortedList.discard` parameter val renamed to value.
- :func:`SortedList.remove` parameter val renamed to value.
- :func:`SortedList.__delitem__` parameter idx renamed to index.
- :func:`SortedList.__getitem__` parameter idx renamed to index.
- :func:`SortedList.__setitem__` now raises :exc:`NotImplementedError`. Use :func:`SortedList.__delitem__` and :func:`SortedList.add` instead.
- :func:`SortedList.bisect_left` parameter val renamed to value.
- :func:`SortedList.bisect_right` parameter val renamed to value.
- :func:`SortedList.bisect` parameter val renamed to value.
- :func:`SortedList.count` parameter val renamed to value.
- :func:`SortedList.append` now raises :exc:`NotImplementedError`. Use :func:`SortedList.add` instead.
- :func:`SortedList.extend` now raises :exc:`NotImplementedError`. Use :func:`SortedList.update` instead.
- :func:`SortedList.insert` now raises :exc:`NotImplementedError`. Use :func:`SortedList.add` instead.
- :func:`SortedList.pop` parameter idx renamed to index.
- :func:`SortedList.index` parameter val renamed to value.
- :func:`SortedList.__add__` parameter that renamed to other.
- :func:`SortedList.__iadd__` parameter that renamed to other.
- :func:`SortedList.__mul__` parameter that renamed to num.
- :func:`SortedList.__imul__` parameter that renamed to num.
- SortedList._make_cmp renamed to SortedList.__make_cmp.
- :func:`SortedKeyList.add` parameter val renamed to value.
- :func:`SortedKeyList.__contains__` parameter val renamed to value.
- :func:`SortedKeyList.discard` parameter val renamed to value.
- :func:`SortedKeyList.remove` parameter val renamed to value.
- :func:`SortedKeyList.bisect_left` parameter val renamed to value.
- :func:`SortedKeyList.bisect_right` parameter val renamed to value.
- :func:`SortedKeyList.bisect` parameter val renamed to value.
- :func:`SortedKeyList.count` parameter val renamed to value.
- :func:`SortedKeyList.append` now raises :exc:`NotImplementedError`. Use :func:`SortedKeyList.add` instead.
- :func:`SortedKeyList.extend` now raises :exc:`NotImplementedError`. Use :func:`SortedKeyList.update` instead.
- :func:`SortedKeyList.insert` now raises :exc:`NotImplementedError`. Use :func:`SortedKeyList.add` instead.
- :func:`SortedKeyList.index` parameter val renamed to value.
- :func:`SortedKeyList.__add__` parameter that renamed to other.
- :func:`SortedKeyList.__radd__` added.
- :func:`SortedKeyList.__iadd__` parameter that renamed to other.
- :func:`SortedKeyList.__mul__` parameter that renamed to num.
- :func:`SortedKeyList.__rmul__` added.
- :func:`SortedKeyList.__imul__` parameter that renamed to num.
- Removed SortedDict.iloc. Use :func:`SortedDict.keys` and :class:`SortedKeysView` instead.
- :func:`SortedDict.fromkeys` parameter seq renamed to iterable.
- :func:`SortedDict.keys` now returns :class:`SortedKeysView`.
- :func:`SortedDict.items` now returns :class:`SortedItemsView`.
- :func:`SortedDict.values` now returns :class:`SortedValuesView`.
- Removed SortedDict.viewkeys. Use :func:`SortedDict.keys` instead.
- Removed SortedDict.viewitems. Use :func:`SortedDict.items` instead.
- Removed SortedDict.viewvalues. Use :func:`SortedDict.values` instead.
- SortedDict.iterkeys removed. Use :func:`SortedDict.keys` instead.
- SortedDict.iteritems removed. Use :func:`SortedDict.items` instead.
- SortedDict.itervalues removed. Use :func:`SortedDict.values` instead.
- SortedDict.popitem now accepts an optional index argument. Default
-1. - sorteddict.KeysView renamed to :class:`SortedKeysView`.
- sorteddict.ItemsView renamed to :class:`SortedItemsView`.
- sorteddict.ValuesView renamed to :class:`SortedValuesView`.
- Sorted dict views rely on collections abstract base classes: dict views and sequence. The :func:`SortedKeysView.__getitem__`, :func:`SortedItemsView.__getitem__`, and :func:`SortedValuesView.__getitem__` methods are implemented and optimized. All other mixin methods use the default implementation provided by the base class. Prefer :class:`SortedDict` methods to view methods when possible.
- SortedSet._make_cmp renamed to SortedSet.__make_cmp.
- :func:`SortedSet.symmetric_difference` parameter that renamed to other.
- :func:`SortedSet.symmetric_difference_update` parameter that renamed to other.
Miscellaneous
- Sphinx autodoc now used for API documentation.
- All benchmarks now run on CPython 3.6 unless otherwise noted.
- Testing now uses pytest rather than nose.
- AppVeyor CI testing added.
- Updated versions of alternative implementations.
Miscellaneous
- Improved performance of irange(...) and islice(...) methods.
Miscellaneous
- Dropped CPython 2.6 testing.
Bugfixes
- Added
SortedList.reverseto overrideMutableSequence.reverseand raiseNotImplementedError.
Bugfixes
- Changed
SortedList.__setitem__to support slices with stop less than start and step equal one.
Bugfixes
- Changed
SortedList.__setitem__to support slices that alias itself.
Bugfixes
- Changed
SortedList.extendto support empty iterables.
Bugfixes
- Changed
SortedList.__new__to callSortedListWithKey.__init__once instead of twice.
Miscellaneous
- Updated documentation with PyCon 2016 Talk.
API Changes
- Added
SortedDict.peekitemmethod.
Miscellaneous
- Added support for PyLint and minor source changes.
- Dropped Python 3.2 support from tox testing due to virtualenv limitations.
Miscellaneous
- Added Performance at Scale documentation.
Miscellaneous
- Updated documentation with SF Python 2015 Holiday Meetup Talk.
API Changes
- Changed
SortedListinitializer to support key-argument callable and automatically returnSortedListWithKeywhen present. - Changed
SortedListWithKeyto inherit fromSortedList. - Changed
SortedSet.__ior__to call update rather than union. - Changed SortedList comparison to match Sequence semantics as described in CPython Language Reference Section 5.9.
- Changed SortedSet comparison to raise NotImplemented on type mismatch.
- Removed SortedList.as_list method. Use
list(sorted_list)instead. - Removed SortedList._slice method. Use
slice.indicesinstead. - Added private references to public methods for internal use to ease method over-loading.
Bugfixes
- Changed sorteddict.ValuesView.count to correctly reference sorted dictionary.
Improvements
SortedList.__getitem__now 35% faster for indexing at beginning and end.SortedList.popnow 35% faster by inlining fast-paths.del sorted_list[:]now calls clear and is much faster.sorted_list[:] = valuesnow calls clear and update and is much faster.
Miscellaneous
- Added Python 3.5 support in tox testing.
- Added discussion of ruamel.ordereddict.sorteddict to performance documentation.
- Merged file
sortedlistwithkey.pyintosortedlist.py.
API Changes
- Added
islicemethod to sorted list, dict, and set types. - Added
irangeandirange_keymethod to sorted list, dict, and set types.
API Changes
- Added
bisect_keymethods to sorted list, dict, and set types. - Added
last=Trueargument toSortedDict.popitem.
Bugfixes
- Added implementation and testing for Python pickle module.
API Changes
- Removed
SortedListWithKeyPairtype.
Improvements
- Changed type references to
self.__class__as able.
API Changes
- Removed
value_orderableargument fromSortedListWithKeyinitializer. - Added key-callable argument to
SortedDictinitializer. - Added key-callable argument to
SortedSetinitializer.
Improvements
- Changed
SortedDictto inherit directly fromdict.
Miscellaneous
- Added PyPy3 support to tox testing.
- Added
SortedListWithKeyto sorted list performance comparison documentation.
Bugfixes
- Changed
SortedList.__setitem__with slices to correctly update internal "maxes" index.
API Changes
- Added
__ior__,__iand__,__isub__, and__ixor__methods toSortedSetinterface.
Improvements
- Changed position-based indexing to use dense tree-based index.
Miscellaneous
- Added workload-based performance comparison for sorted list: Priority Queue, Multiset, etc.
Bugfixes
- Changed copy methods to make shallow copies: values are not copied, only references to values are copied.
Miscellaneous
- Added load-factor performance comparison documentation.
API Changes
- Added
value_orderableparameter toSortedListWithKeyto support incomparable value types.
Bugfixes
- Changed
reprmethods to prevent infinite recursion and allow easier subclassing.
Miscellaneous
- Added more testing for sorted lists with key-callable argument.
API Changes
- Added
SortedListWithKeytype with implementation based on(key, value)tuples.
Bugfixes
- Added contains-key check in sorted dict equality comparisons.
Miscellaneous
- Added Python runtime comparison to documentation.
- Added sorted dict and set comparison to benchmark documentation.
- Added Travis-CI testing.
API Changes
- Added
bisectmethods fromSortedListtoSortedDictinterface.
Miscellaneous
- Added Banyan module to benchmark documentation.
Miscellaneous
- Added testing support for CPython 2.6, 2.7, 3.2, and 3.3 with full coverage.
- Initial release of sorted list, dict, and set types.