All Versions
41
Latest Version
Avg Release Cycle
87 days
Latest Release
1223 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.4.0 Changes
May 16, 2021API Changes
- Implement SortedDict methods: or, ror, and ior per PEP 584.
-
v2.3.0 Changes
November 08, 2020๐ Bugfixes
- โก๏ธ Make sort order stable when updating with large iterables.
-
v2.2.2 Changes
June 07, 2020Miscellaneous
- Add "small slice" optimization to
SortedList.__getitem__
. - โ
Silence warning when testing
SortedList.iloc
.
- Add "small slice" optimization to
-
v2.2.1 Changes
June 06, 2020Miscellaneous
- ๐ Fix a warning regarding
classifiers
in setup.py.
- ๐ Fix a warning regarding
-
v2.2.0 Changes
June 06, 2020Miscellaneous
- ๐ Change SortedDict to avoid cycles for CPython reference counting.
-
v2.1.0 Changes
November 21, 2018Miscellaneous
- โก๏ธ Small updates to docs and tests for Python 3.7.
-
v2.0.5 Changes
September 03, 2018๐ Bugfixes
- ๐ Change imports for Abstract Base Classes to
collections.abc
to avoid warnings in Python 3.7.
- ๐ Change imports for Abstract Base Classes to
-
v2.0.4 Changes
June 06, 2018๐ Bugfixes
SortedDict
methodsiterkeys
,iteritems
,itervalues
,viewkeys
,viewitems
, andviewvalues
are not implemented for Python 2. Attribute lookup now raises :exc:AttributeError
.
-
v2.0.3 Changes
May 31, 2018API Changes
- ๐ Accessing
SortedDict.iloc
will emitDeprecationWarning
.
๐ Bugfixes
SortedSet.__rsub__
erroneously reversed its arguments. The method has been removed in favor of the inheritedSet.__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
andtests
directories. If you need these, then please download an archive from Github. Version control is tagged with the version released to PyPI.
- ๐ Accessing
-
v2.0.2 Changes
May 21, 2018API Changes
- โ Add
SortedDict.iloc
for improved backwards compatibility with version 1.
- โ Add