python-larch 1.20131130-1 source package in Ubuntu

Changelog

python-larch (1.20131130-1) unstable; urgency=low


  * New upstream release.

 -- Lars Wirzenius <email address hidden>  Sat, 30 Nov 2013 09:50:25 +0000

Upload details

Uploaded by:
to be removed
Uploaded to:
Sid
Original maintainer:
to be removed
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe python

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
python-larch_1.20131130-1.dsc 1.5 KiB d4d37727c25687fae91abfae3239074bf9d820048b2d0f6e7a31721d73e35b5a
python-larch_1.20131130.orig.tar.gz 84.5 KiB 2717e851bde45b66e8b2d44181861f24135d185abab8111119857943d3b5cac1
python-larch_1.20131130-1.diff.gz 3.7 KiB ba2f8982486ca1bbd17e041b724ce64adcf6e85ee24e52e1dd85683e29b5747a

Available diffs

No changes file available.

Binary packages built by this source

python-larch: B-tree library for Python

 An implementation of a particular kind of B-tree, based on research
 by Ohad Rodeh. This is the same data structure that btrfs uses, but
 in a new, pure-Python implementation.
 .
 The distinctive feature of this B-tree is that a node is never (conceptually)
 modified. Instead, all updates are done by copy-on-write. This makes it
 easy to clone a tree, and modify only the clone, while other processes
 access the original tree.
 .
 The implementation is generic and flexible, so that you may use it in
 a variety of situations. For example, the tree itself does not decide
 where its nodes are stored: you provide a class that does that for it.
 The library contains two implementations, one for in-memory and one
 for on-disk storage.