Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python.announce > #1623 > unrolled thread

ANN: SortedContainers 0.9.5 released

Started byGrant Jenks <grant.jenks@gmail.com>
First post2015-03-16 11:10 -0700
Last post2015-03-16 11:10 -0700
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python.announce


Contents

  ANN: SortedContainers 0.9.5 released Grant Jenks <grant.jenks@gmail.com> - 2015-03-16 11:10 -0700

#1623 — ANN: SortedContainers 0.9.5 released

FromGrant Jenks <grant.jenks@gmail.com>
Date2015-03-16 11:10 -0700
SubjectANN: SortedContainers 0.9.5 released
Message-ID<mailman.461.1426530894.21433.python-announce-list@python.org>
Announcing the release of SortedContainers version 0.9.5

What is SortedContainers?
-------------------------

SortedContainers is an Apache2-licensed, pure-Python implementation of
sorted list, sorted dict, and sorted set data types that is fast-as-C
implementations with 100% code coverage and hours of stress testing.
The project is fully documented with performance benchmarks and
comparisons to alternative implementations.

What's new in 0.9.5?
--------------------

- Added bisect_key, bisect_key_left, and bisect_key_right methods to
  SortedListWithKey, SortedDict, and SortedSet data types. If you're
  using a key function, you can now directly bisect the key value.
- Added last=True keyword argument to SortedDict.popitem (mirrors the
  OrderedDict.popitem api).
- Minor performance improvements to indexing.
- Minor documentation improvements.

Links
-----

- Documentation: http://www.grantjenks.com/docs/sortedcontainers/
- Download: https://pypi.python.org/pypi/sortedcontainers
- Source: https://github.com/grantjenks/sorted_containers
- Issues: https://github.com/grantjenks/sorted_containers/issues

This release is backwards-compatible. Please upgrade.

Grant Jenks

[toc] | [standalone]


Back to top | Article view | comp.lang.python.announce


csiph-web