Skip to main content

Scalable persistent object containers

Project description

BTrees: scalable persistent components

https://travis-ci.org/zopefoundation/BTrees.svg?branch=master https://ci.appveyor.com/api/projects/status/github/zopefoundation/BTrees?branch=master&svg=true https://coveralls.io/repos/github/zopefoundation/BTrees/badge.svg?branch=master Current version on PyPI Supported Python versions

This package contains a set of persistent object containers built around a modified BTree data structure. The trees are optimized for use inside ZODB’s “optimistic concurrency” paradigm, and include explicit resolution of conflicts detected by that mechanism.

Please see the Sphinx documentation for further information.

BTrees Changelog

4.7.2 (2020-04-07)

  • Fix more cases of C and Python inconsistency. The C implementation now behaves like the Python implementation when it comes to integer overflow for the integer keys for in, get and has_key. Now they return False, the default value, and False, respectively in both versions if the tested value would overflow or underflow. Previously, the C implementation would raise OverflowError or KeyError, while the Python implementation functioned as expected. See issue 140.

4.7.1 (2020-03-22)

  • Fix the definitions of __all__ in modules. In 4.7.0, they incorrectly left out names. See PR 132.

  • Ensure the interface resolution order of all objects is consistent. See issue 137.

4.7.0 (2020-03-17)

  • Add unsigned variants of the trees. These use the initial “U” for 32-bit data and “Q” for 64-bit data (for “quad”, which is similar to what the C printf function uses and the Python struct module uses).

  • Fix the value for BTrees.OIBTree.using64bits when using the pure Python implementation (PyPy and when PURE_PYTHON is in the environment).

  • Make the errors that are raised when values are out of range more consistent between Python 2 and Python 3 and between 32-bit and 64-bit variants.

  • Make the Bucket types consistent with the BTree types as updated in versions 4.3.2: Querying for keys with default comparisons or that are not integers no longer raises TypeError.

4.6.1 (2019-11-07)

  • Add support for Python 3.8.

4.6.0 (2019-07-30)

  • Drop support for Python 3.4.

  • Fix tests against persistent 4.4.

  • Stop accidentally installing the ‘terryfy’ package in macOS wheels. See issue 98.

  • Fix segmentation fault in bucket_repr(). See issue 106.

4.5.1 (2018-08-09)

  • Produce binary wheels for Python 3.7.

  • Use pyproject.toml to specify build dependencies. This requires pip 18 or later to build from source.

4.5.0 (2018-04-23)

4.4.1 (2017-01-24)

Fixed a packaging bug that caused extra files to be included (some of which caused problems in some platforms).

4.4.0 (2017-01-11)

  • Allow None as a special key (sorted smaller than all others).

    This is a bit of a return to BTrees 3 behavior in that Nones are allowed as keys again. Other objects with default ordering are still not allowed as keys.

4.3.2 (2017-01-05)

  • Make the CPython implementation consistent with the pure-Python implementation and only check object keys for default comparison when setting keys. In Python 2 this makes it possible to remove keys that were added using a less restrictive version of BTrees. (In Python 3 keys that are unorderable still cannot be removed.) Likewise, all versions can unpickle trees that already had such keys. See: https://github.com/zopefoundation/BTrees/issues/53 and https://github.com/zopefoundation/BTrees/issues/51

  • Make the Python implementation consistent with the CPython implementation and check object key identity before checking equality and performing comparisons. This can allow fixing trees that have keys that now have broken comparison functions. See https://github.com/zopefoundation/BTrees/issues/50

  • Make the CPython implementation consistent with the pure-Python implementation and no longer raise TypeError for an object key (in object-keyed trees) with default comparison on __getitem__, get or in operations. Instead, the results will be a KeyError, the default value, and False, respectively. Previously, CPython raised a TypeError in those cases, while the Python implementation behaved as specified.

    Likewise, non-integer keys in integer-keyed trees will raise KeyError, return the default and return False, respectively, in both implementations. Previously, pure-Python raised a KeyError, returned the default, and raised a TypeError, while CPython raised TypeError in all three cases.

4.3.1 (2016-05-16)

  • Packaging: fix password used to automate wheel creation on Travis.

4.3.0 (2016-05-10)

  • Fix unexpected OverflowError when passing 64bit values to long keys / values on Win64. See: https://github.com/zopefoundation/BTrees/issues/32

  • When testing PURE_PYTHON environments under tox, avoid poisoning the user’s global wheel cache.

  • Ensure that the pure-Python implementation, used on PyPy and when a C compiler isn’t available for CPython, pickles identically to the C version. Unpickling will choose the best available implementation. This change prevents interoperability problems and database corruption if both implementations are in use. While it is no longer possible to pickle a Python implementation and have it unpickle to the Python implementation if the C implementation is available, existing Python pickles will still unpickle to the Python implementation (until pickled again). See: https://github.com/zopefoundation/BTrees/issues/19

  • Avoid creating invalid objects when unpickling empty BTrees in a pure-Python environment.

  • Drop support for Python 2.6 and 3.2.

4.2.0 (2015-11-13)

  • Add support for Python 3.5.

4.1.4 (2015-06-02)

  • Ensure that pure-Python Bucket and Set objects have a human readable __repr__ like the C versions.

4.1.3 (2015-05-19)

4.1.2 (2015-04-07)

4.1.1 (2014-12-27)

  • Accomodate long values in pure-Python OLBTrees.

4.1.0 (2014-12-26)

  • Add support for PyPy and PyPy3.

  • Add support for Python 3.4.

  • BTree subclasses can define max_leaf_size or max_internal_size to control maximum sizes for Bucket/Set and BTree/TreeSet nodes.

  • Detect integer overflow on 32-bit machines correctly under Python 3.

  • Update pure-Python and C trees / sets to accept explicit None to indicate max / min value for minKey, maxKey. (PR #3)

  • Update pure-Python trees / sets to accept explicit None to indicate open ranges for keys, values, items. (PR #3)

4.0.8 (2013-05-25)

  • Fix value-based comparison for objects under Py3k: addresses invalid merges of [OLI]OBTrees/OBuckets.

  • Ensure that pure-Python implementation of OOBTree.byValue matches semantics (reversed-sort) of C implementation.

4.0.7 (2013-05-22)

  • Issue #2: compilation error on 32-bit mode of OS/X.

  • Test PURE_PYTHON environment variable support: if set, the C extensions will not be built, imported, or tested.

4.0.6 (2013-05-14)

  • Changed the ZODB extra to require only the real ZODB package, rather than the ZODB3 metapackage: depending on the version used, the metapackage could pull in stale versions of this package and persistent.

  • Fixed Python version check in setup.py.

4.0.5 (2013-01-15)

  • Fit the repr of bucket objects, which could contain garbage characters.

4.0.4 (2013-01-12)

  • Emulate the (private) iterators used by the C extension modules from pure Python. This change is “cosmetic” only: it prevents the ZCML zope.app.security:permission.zcml from failing. The emulated classes are not functional, and should be considered implementation details.

  • Accomodate buildout to the fact that we no longer bundle a copy of ‘persistent.h’.

  • Fix test failures on Windows: no longer rely on overflows from sys.maxint.

4.0.3 (2013-01-04)

  • Added setup_requires==['persistent'].

4.0.2 (2013-01-03)

  • Updated Trove classifiers.

  • Added explicit support for Python 3.2, Python 3.3, and PyPy. Note that the C extensions are not (yet) available on PyPy.

  • Python reference implementations now tested separately from the C verions on all platforms.

  • 100% unit test coverage.

4.0.1 (2012-10-21)

  • Provide local fallback for persistent C header inclusion if the persistent distribution isn’t installed. This makes the winbot happy.

4.0.0 (2012-10-20)

Platform Changes

  • Dropped support for Python < 2.6.

  • Factored BTrees as a separate distribution.

Testing Changes

  • All covered platforms tested under tox.

  • Added support for continuous integration using tox and jenkins.

  • Added setup.py dev alias (installs nose and coverage).

  • Dropped dependency on zope.testing / zope.testrunner: tests now run with setup.py test.

Documentation Changes

  • Added API reference, generated via Spinx’ autodoc.

  • Added Sphinx documentation based on ZODB Guide (snippets are exercised via ‘tox’).

  • Added setup.py docs alias (installs Sphinx and repoze.sphinx.autointerface).

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

BTrees-4.7.2.tar.gz (175.1 kB view hashes)

Uploaded Source

Built Distributions

BTrees-4.7.2-cp38-cp38-win_amd64.whl (921.9 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

BTrees-4.7.2-cp38-cp38-win32.whl (770.3 kB view hashes)

Uploaded CPython 3.8 Windows x86

BTrees-4.7.2-cp38-cp38-manylinux2010_x86_64.whl (3.3 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

BTrees-4.7.2-cp38-cp38-manylinux2010_i686.whl (2.7 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

BTrees-4.7.2-cp38-cp38-manylinux1_x86_64.whl (3.3 MB view hashes)

Uploaded CPython 3.8

BTrees-4.7.2-cp38-cp38-manylinux1_i686.whl (2.7 MB view hashes)

Uploaded CPython 3.8

BTrees-4.7.2-cp38-cp38-macosx_10_15_x86_64.whl (804.5 kB view hashes)

Uploaded CPython 3.8 macOS 10.15+ x86-64

BTrees-4.7.2-cp38-cp38-macosx_10_9_x86_64.whl (884.6 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

BTrees-4.7.2-cp37-cp37m-win_amd64.whl (915.3 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

BTrees-4.7.2-cp37-cp37m-win32.whl (767.6 kB view hashes)

Uploaded CPython 3.7m Windows x86

BTrees-4.7.2-cp37-cp37m-manylinux2010_x86_64.whl (3.0 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

BTrees-4.7.2-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

BTrees-4.7.2-cp37-cp37m-manylinux1_x86_64.whl (3.0 MB view hashes)

Uploaded CPython 3.7m

BTrees-4.7.2-cp37-cp37m-manylinux1_i686.whl (2.5 MB view hashes)

Uploaded CPython 3.7m

BTrees-4.7.2-cp37-cp37m-macosx_10_9_x86_64.whl (874.8 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

BTrees-4.7.2-cp36-cp36m-win_amd64.whl (915.1 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

BTrees-4.7.2-cp36-cp36m-win32.whl (767.1 kB view hashes)

Uploaded CPython 3.6m Windows x86

BTrees-4.7.2-cp36-cp36m-manylinux2010_x86_64.whl (3.0 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

BTrees-4.7.2-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

BTrees-4.7.2-cp36-cp36m-manylinux1_x86_64.whl (3.0 MB view hashes)

Uploaded CPython 3.6m

BTrees-4.7.2-cp36-cp36m-manylinux1_i686.whl (2.5 MB view hashes)

Uploaded CPython 3.6m

BTrees-4.7.2-cp36-cp36m-macosx_10_6_intel.whl (1.6 MB view hashes)

Uploaded CPython 3.6m macOS 10.6+ intel

BTrees-4.7.2-cp35-cp35m-win_amd64.whl (915.0 kB view hashes)

Uploaded CPython 3.5m Windows x86-64

BTrees-4.7.2-cp35-cp35m-win32.whl (767.1 kB view hashes)

Uploaded CPython 3.5m Windows x86

BTrees-4.7.2-cp35-cp35m-manylinux2010_x86_64.whl (3.0 MB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

BTrees-4.7.2-cp35-cp35m-manylinux2010_i686.whl (2.5 MB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

BTrees-4.7.2-cp35-cp35m-manylinux1_x86_64.whl (3.0 MB view hashes)

Uploaded CPython 3.5m

BTrees-4.7.2-cp35-cp35m-manylinux1_i686.whl (2.5 MB view hashes)

Uploaded CPython 3.5m

BTrees-4.7.2-cp35-cp35m-macosx_10_6_intel.whl (1.6 MB view hashes)

Uploaded CPython 3.5m macOS 10.6+ intel

BTrees-4.7.2-cp27-cp27mu-manylinux2010_x86_64.whl (2.9 MB view hashes)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

BTrees-4.7.2-cp27-cp27mu-manylinux2010_i686.whl (2.4 MB view hashes)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

BTrees-4.7.2-cp27-cp27mu-manylinux1_x86_64.whl (2.9 MB view hashes)

Uploaded CPython 2.7mu

BTrees-4.7.2-cp27-cp27mu-manylinux1_i686.whl (2.4 MB view hashes)

Uploaded CPython 2.7mu

BTrees-4.7.2-cp27-cp27m-win_amd64.whl (864.5 kB view hashes)

Uploaded CPython 2.7m Windows x86-64

BTrees-4.7.2-cp27-cp27m-win32.whl (744.1 kB view hashes)

Uploaded CPython 2.7m Windows x86

BTrees-4.7.2-cp27-cp27m-manylinux2010_x86_64.whl (2.9 MB view hashes)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

BTrees-4.7.2-cp27-cp27m-manylinux2010_i686.whl (2.4 MB view hashes)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

BTrees-4.7.2-cp27-cp27m-manylinux1_x86_64.whl (2.9 MB view hashes)

Uploaded CPython 2.7m

BTrees-4.7.2-cp27-cp27m-manylinux1_i686.whl (2.4 MB view hashes)

Uploaded CPython 2.7m

BTrees-4.7.2-cp27-cp27m-macosx_10_9_x86_64.whl (873.6 kB view hashes)

Uploaded CPython 2.7m macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page