Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python.announce > #1623
| Path | csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <grant.jenks@gmail.com> |
| X-Original-To | python-announce-list@python.org |
| Delivered-To | python-announce-list@mail.python.org |
| X-Spam-Status | OK 0.032 |
| X-Spam-Evidence | '*H*': 0.94; '*S*': 0.00; 'url:pypi': 0.03; 'argument': 0.05; 'subject:ANN': 0.07; 'subject:released': 0.07; 'function,': 0.09; 'url:github': 0.09; '0.9.5': 0.16; 'bisect': 0.16; 'to:addr:python-announce-list': 0.16; 'url:issues': 0.16; 'value.': 0.19; 'documented': 0.24; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'download:': 0.31; 'minor': 0.31; 'testing.': 0.31; 'types.': 0.31; 'url:python': 0.33; '-----': 0.33; 'received:google.com': 0.35; 'version': 0.36; 'coverage': 0.36; 'keyword': 0.36; 'url:org': 0.36; 'skip:- 20': 0.37; 'project': 0.37; 'performance': 0.37; 'list,': 0.38; 'to:addr:python.org': 0.39; 'release': 0.40; 'new': 0.61; "you're": 0.61; 'hours': 0.66; 'improvements': 0.68; '100%': 0.77; 'dict,': 0.84; 'issues:': 0.84; 'subject:skip:S 10': 0.84; 'announcing': 0.91 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=7TUSVk7n1NUe6eDaZ8Yf70Qj0u/b0QJOONfk5x0a+gU=; b=so81HxiiVwibCBNyl0NjDyWPS7xQesFAMi3iyYn7yUP7mfKn1G647HFSw3yTWtgMv5 AYVYsiGAYucLyaZtW2pEgDGm79B4NFTPNFNLgEA9ynwzGGCa7LhlU1PNaQRWmsKLRopZ 0B/tHG257aSo8or0wFk6r8dGEq6rtSyojsB6E28QkfuraC4gK2WIqr9ME5MMZR1sR6g6 qi+/e02ZaPRzAUcXPRzivmcJlYFBOqV80PmKzJKwhdgTzfB8FptrHRKJOJdV8kJ2uQEM 8/Q04m1dyNt2MqEkChFbOM0MO3PS3+0lEn+0+VyxP5yC3cbO8Nwb76R4y4Iskf24pLvu ubmQ== |
| MIME-Version | 1.0 |
| X-Received | by 10.42.94.65 with SMTP id a1mr78291779icn.1.1426529436063; Mon, 16 Mar 2015 11:10:36 -0700 (PDT) |
| Date | Mon, 16 Mar 2015 11:10:36 -0700 |
| Subject | ANN: SortedContainers 0.9.5 released |
| From | Grant Jenks <grant.jenks@gmail.com> |
| To | python-announce-list@python.org |
| Content-Type | text/plain; charset=UTF-8 |
| X-Mailman-Approved-At | Mon, 16 Mar 2015 19:34:54 +0100 |
| X-BeenThere | python-announce-list@python.org |
| X-Mailman-Version | 2.1.19 |
| Precedence | list |
| List-Id | Announcement-only list for the Python programming language <python-announce-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-announce-list/> |
| List-Post | <mailto:python-announce-list@python.org> |
| List-Help | <mailto:python-announce-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=subscribe> |
| Approved | python-announce-list@python.org |
| Newsgroups | comp.lang.python.announce |
| Message-ID | <mailman.461.1426530894.21433.python-announce-list@python.org> (permalink) |
| Lines | 33 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1426530894 news.xs4all.nl 2899 [2001:888:2000:d::a6]:50028 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python.announce:1623 |
Show key headers only | View raw
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
Back to comp.lang.python.announce | Previous | Next | Find similar | Unroll thread
ANN: SortedContainers 0.9.5 released Grant Jenks <grant.jenks@gmail.com> - 2015-03-16 11:10 -0700
csiph-web