BTrees


NameBTrees JSON
Version 6.0 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/BTrees
SummaryScalable persistent object containers
upload_time2024-05-30 09:10:40
maintainerNone
docs_urlhttps://pythonhosted.org/BTrees/
authorZope Foundation
requires_python>=3.8
licenseZPL 2.1
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            =============================================
 ``BTrees``:  scalable persistent components
=============================================

.. image:: https://github.com/zopefoundation/BTrees/actions/workflows/tests.yml/badge.svg
    :target: https://github.com/zopefoundation/BTrees/actions/workflows/tests.yml

.. image:: https://ci.appveyor.com/api/projects/status/github/zopefoundation/BTrees?branch=master&svg=true
    :target: https://ci.appveyor.com/project/mgedmin/BTrees

.. image:: https://coveralls.io/repos/github/zopefoundation/BTrees/badge.svg?branch=master
    :target: https://coveralls.io/github/zopefoundation/BTrees?branch=master

.. image:: https://readthedocs.org/projects/btrees/badge/?version=latest
        :target: https://btrees.readthedocs.io/en/latest/
        :alt: Documentation Status

.. image:: https://img.shields.io/pypi/v/BTrees.svg
        :target: https://pypi.org/project/BTrees/
        :alt: Current version on PyPI

.. image:: https://img.shields.io/pypi/pyversions/BTrees.svg
        :target: https://pypi.org/project/BTrees/
        :alt: 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 <https://btrees.readthedocs.io/>`_ for
further information.


==================
 BTrees Changelog
==================

6.0 (2024-05-30)
================

- Drop support for Python 3.7.

- Build Windows wheels on GHA.


5.2 (2024-02-07)
================

- Add preliminary support for Python 3.13 as of 3.13a3.

5.1 (2023-10-05)
================

- Drop using ``setup_requires`` due to constant problems on GHA.

- Add support for Python 3.12.


5.0 (2023-02-10)
================

- Build Linux binary wheels for Python 3.11.

- Drop support for Python 2.7, 3.5, 3.6.


4.11.3 (2022-11-17)
===================

- point release to rebuild full set of wheels


4.11.2 (2022-11-16)
===================

- Add support for building arm64 wheels on macOS.


4.11.1 (2022-11-09)
===================

- Fix macOS wheel build issues on GitHub Actions

- We no longer provide 32bit wheels for the Windows platform, only x86_64.


4.11.0 (2022-11-03)
===================

- Add support for Python 3.11.


4.10.1 (2022-09-12)
===================

- Disable unsafe math optimizations in C code.
  (`#184 <https://github.com/zopefoundation/BTrees/pull/184>`_)


4.10.0 (2022-03-09)
===================

- Add support for Python 3.10.


4.9.2 (2021-06-09)
==================

- Fix ``fsBTree.TreeSet`` and ``fsBTree.BTree`` raising
  ``SystemError``. See `issue 170 <https://github.com/zopefoundation/BTrees/issues/170>`_.

- Fix all the ``fsBTree`` objects to provide the correct interfaces
  and be instances of the appropriate collection ABCs. This was done
  for the other modules in release 4.8.0.

- Fix the ``multiunion``, ``union``, ``intersection``, and
  ``difference`` functions when used with arbitrary iterables.
  Previously, the iterable had to be pre-sorted, meaning only
  sequences like ``list`` and ``tuple`` could reliably be used; this
  was not documented though. If the iterable wasn't sorted, the
  function would produce garbage output. Now, if the function detects
  an arbitrary iterable, it automatically sorts a copy.

4.9.1 (2021-05-27)
==================

- Fix setting unknown class attributes on subclasses of BTrees when
  using the C extension. This prevented subclasses from being
  decorated with ``@component.adapter()``. See `issue 168
  <https://github.com/zopefoundation/BTrees/issues/168>`_.


4.9.0 (2021-05-26)
==================

- Fix the C implementation to match the Python implementation and
  allow setting custom node sizes for an entire application directly
  by changing ``BTree.max_leaf_size`` and ``BTree.max_internal_size``
  attributes, without having to create a new subclass. These
  attributes can now also be read from the classes in the C
  implementation. See `issue 166
  <https://github.com/zopefoundation/BTrees/issues/166>`_.

- Add various small performance improvements for storing
  zope.interface attributes on ``BTree`` and ``TreeSet`` as well as
  deactivating persistent objects from this package.

4.8.0 (2021-04-14)
==================

- Make Python 2 forbid the use of type objects as keys (unless a
  custom metaclass is used that implements comparison as required by
  BTrees.) On Python 3, types are not orderable so they were already
  forbidden, but on Python 2 types can be ordered by memory address,
  which makes them unsuitable for use as keys. See `issue
  <https://github.com/zopefoundation/BTrees/issues/153>`_.

- Make the ``multiunion``, ``union``, ``intersection``, and
  ``difference`` functions accept arbitrary Python iterables (that
  iterate across the correct types). Previously, the Python
  implementation allowed this, but the C implementation only allowed
  objects (like ``TreeSet`` or ``Bucket``) defined in the same module
  providing the function. See `issue 24
  <https://github.com/zopefoundation/BTrees/issues/24>`_.

- Fix persistency bug in the Python version
  (`#118 <https://github.com/zopefoundation/BTrees/issues/118>`_).

- Fix ``Tree.__setstate__`` to no longer accept children besides
  tree or bucket types to prevent crashes. See `PR 143
  <https://github.com/zopefoundation/BTrees/pull/143>`_ for details.

- Make BTrees, TreeSet, Set and Buckets implements the ``__and__``,
  ``__or__`` and ``__sub__`` special methods as shortcuts for
  ``BTrees.Interfaces.IMerge.intersection``,
  ``BTrees.Interfaces.IMerge.union`` and
  ``BTrees.Interfaces.IMerge.difference``.

- Add support for Python 3.9.

- Build and upload aarch64 wheels.

- Make a value of ``0`` in the ``PURE_PYTHON`` environment variable
  require the C extensions (except on PyPy). Previously, and if this
  variable is unset, missing or unusable C extensions would be
  silently ignored. With this variable set to ``0``, an
  ``ImportError`` will be raised if the C extensions are unavailable.
  See `issue 156
  <https://github.com/zopefoundation/BTrees/issues/156>`_.

- Make the BTree objects (``BTree``, ``TreeSet``, ``Set``, ``Bucket``)
  of each module actually provide the interfaces defined in
  ``BTrees.Interfaces``. Previously, they provided no interfaces.

- Make all the BTree and Bucket objects instances of
  ``collections.abc.MutableMapping`` (that is, ``isinstance(btree,
  MutableMapping)`` is now true; no actual inheritance has changed).
  As part of this, they now provide the ``popitem()`` method.

- Make all the TreeSet and Set objects instances of
  ``collections.abc.MutableSet`` (that is, ``isinstance(tree_set,
  MutableSet)`` is now true; no actual inheritance has changed).
  As part of this, they now provide several more methods, including
  ``isdisjoint``, ``discard``, and ``pop``, and support in-place
  mutation operators such as ``tree_set |= other``, ``tree_set +=
  other``, ``tree_set -= other`` and ``tree_set ^= other``. See `issue
  121 <https://github.com/zopefoundation/BTrees/issues/121>`_.

- Update the definitions of ``ISized`` and ``IReadSequence`` to simply
  be ``zope.interface.common.collections.ISized`` and
  ``zope.interface.common.sequence.IMinimalSequence`` respectively.

- Remove the ``__nonzero__`` interface method from ``ICollection``. No
  objects actually implemented such a method; instead, the boolean value
  is typically taken from ``__len__``.

- Adjust the definition of ``ISet`` to produce the same resolution
  order under the C3 and legacy orderings. This means that the legacy
  order has changed slightly, but that this package emits no warnings
  when ``ZOPE_INTERFACE_LOG_CHANGED_IRO=1``. Note that the legacy
  order was not being used for these objects because the C3 ordering
  was still consistent; it could only be obtained using
  ``ZOPE_INTERFACE_USE_LEGACY_IRO=1``. See `PR 159
  <https://github.com/zopefoundation/BTrees/pull/159>`_ for all the
  interface updates.

- Fix the ``get``, ``setdefault`` and ``pop`` methods, as well as the
  ``in`` operator, to not suppress ``POSKeyError`` if the object or
  subobjects are corrupted. Previously, such errors were logged by
  ZODB, but not propagated. See `issue 161
  <https://github.com/zopefoundation/BTrees/issues/161>`_.

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
  <https://github.com/zopefoundation/BTrees/issues/140>`_.

  .. note::
     The unspecified true return values of ``has_key``
     have changed.


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
  <https://github.com/zopefoundation/BTrees/pull/132>`_.

- Ensure the interface resolution order of all objects is consistent.
  See `issue 137 <https://github.com/zopefoundation/BTrees/issues/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
  <https://github.com/zopefoundation/BTrees/issues/98>`_.

- Fix segmentation fault in ``bucket_repr()``.  See
  `issue 106 <https://github.com/zopefoundation/BTrees/issues/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)
==================

- Add support for Python 3.6 and 3.7.
- Drop support for Python 3.3.
- Raise an ``ImportError`` consistently on Python 3 if the C extension for
  BTrees is used but the ``persistent`` C extension is not available.
  Previously this could result in an odd ``AttributeError``. See
  https://github.com/zopefoundation/BTrees/pull/55
- Fix the possibility of a rare crash in the C extension when
  deallocating items. See https://github.com/zopefoundation/BTrees/issues/75
- Respect the ``PURE_PYTHON`` environment variable at runtime even if
  the C extensions are available. See
  https://github.com/zopefoundation/BTrees/issues/78
- Always attempt to build the C extensions, but make their success
  optional.
- Fix a ``DeprecationWarning`` that could come from I and L objects in
  Python 2 in pure-Python mode. See https://github.com/zopefoundation/BTrees/issues/79

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)
==================

- Fix ``_p_changed`` when removing items from small pure-Python
  BTrees/TreeSets and when adding items to small pure-Python Sets. See:
  https://github.com/zopefoundation/BTrees/issues/13


4.1.2 (2015-04-07)
==================

- Suppress testing 64-bit values in OLBTrees on 32 bit machines.
  See:  https://github.com/zopefoundation/BTrees/issues/9

- Fix ``_p_changed`` when adding items to small pure-Python
  BTrees/TreeSets. See:
  https://github.com/zopefoundation/BTrees/issues/11


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``).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/BTrees",
    "name": "BTrees",
    "maintainer": null,
    "docs_url": "https://pythonhosted.org/BTrees/",
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Zope Foundation",
    "author_email": "zodb-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/45/4e/b0b8b0113835347d7a83647df90acbf11d7be0027844651cf369abcbb15c/BTrees-6.0.tar.gz",
    "platform": "any",
    "description": "=============================================\n ``BTrees``:  scalable persistent components\n=============================================\n\n.. image:: https://github.com/zopefoundation/BTrees/actions/workflows/tests.yml/badge.svg\n    :target: https://github.com/zopefoundation/BTrees/actions/workflows/tests.yml\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/zopefoundation/BTrees?branch=master&svg=true\n    :target: https://ci.appveyor.com/project/mgedmin/BTrees\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/BTrees/badge.svg?branch=master\n    :target: https://coveralls.io/github/zopefoundation/BTrees?branch=master\n\n.. image:: https://readthedocs.org/projects/btrees/badge/?version=latest\n        :target: https://btrees.readthedocs.io/en/latest/\n        :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/BTrees.svg\n        :target: https://pypi.org/project/BTrees/\n        :alt: Current version on PyPI\n\n.. image:: https://img.shields.io/pypi/pyversions/BTrees.svg\n        :target: https://pypi.org/project/BTrees/\n        :alt: Supported Python versions\n\n\nThis package contains a set of persistent object containers built around\na modified BTree data structure.  The trees are optimized for use inside\nZODB's \"optimistic concurrency\" paradigm, and include explicit resolution\nof conflicts detected by that mechanism.\n\nPlease see `the Sphinx documentation <https://btrees.readthedocs.io/>`_ for\nfurther information.\n\n\n==================\n BTrees Changelog\n==================\n\n6.0 (2024-05-30)\n================\n\n- Drop support for Python 3.7.\n\n- Build Windows wheels on GHA.\n\n\n5.2 (2024-02-07)\n================\n\n- Add preliminary support for Python 3.13 as of 3.13a3.\n\n5.1 (2023-10-05)\n================\n\n- Drop using ``setup_requires`` due to constant problems on GHA.\n\n- Add support for Python 3.12.\n\n\n5.0 (2023-02-10)\n================\n\n- Build Linux binary wheels for Python 3.11.\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n\n4.11.3 (2022-11-17)\n===================\n\n- point release to rebuild full set of wheels\n\n\n4.11.2 (2022-11-16)\n===================\n\n- Add support for building arm64 wheels on macOS.\n\n\n4.11.1 (2022-11-09)\n===================\n\n- Fix macOS wheel build issues on GitHub Actions\n\n- We no longer provide 32bit wheels for the Windows platform, only x86_64.\n\n\n4.11.0 (2022-11-03)\n===================\n\n- Add support for Python 3.11.\n\n\n4.10.1 (2022-09-12)\n===================\n\n- Disable unsafe math optimizations in C code.\n  (`#184 <https://github.com/zopefoundation/BTrees/pull/184>`_)\n\n\n4.10.0 (2022-03-09)\n===================\n\n- Add support for Python 3.10.\n\n\n4.9.2 (2021-06-09)\n==================\n\n- Fix ``fsBTree.TreeSet`` and ``fsBTree.BTree`` raising\n  ``SystemError``. See `issue 170 <https://github.com/zopefoundation/BTrees/issues/170>`_.\n\n- Fix all the ``fsBTree`` objects to provide the correct interfaces\n  and be instances of the appropriate collection ABCs. This was done\n  for the other modules in release 4.8.0.\n\n- Fix the ``multiunion``, ``union``, ``intersection``, and\n  ``difference`` functions when used with arbitrary iterables.\n  Previously, the iterable had to be pre-sorted, meaning only\n  sequences like ``list`` and ``tuple`` could reliably be used; this\n  was not documented though. If the iterable wasn't sorted, the\n  function would produce garbage output. Now, if the function detects\n  an arbitrary iterable, it automatically sorts a copy.\n\n4.9.1 (2021-05-27)\n==================\n\n- Fix setting unknown class attributes on subclasses of BTrees when\n  using the C extension. This prevented subclasses from being\n  decorated with ``@component.adapter()``. See `issue 168\n  <https://github.com/zopefoundation/BTrees/issues/168>`_.\n\n\n4.9.0 (2021-05-26)\n==================\n\n- Fix the C implementation to match the Python implementation and\n  allow setting custom node sizes for an entire application directly\n  by changing ``BTree.max_leaf_size`` and ``BTree.max_internal_size``\n  attributes, without having to create a new subclass. These\n  attributes can now also be read from the classes in the C\n  implementation. See `issue 166\n  <https://github.com/zopefoundation/BTrees/issues/166>`_.\n\n- Add various small performance improvements for storing\n  zope.interface attributes on ``BTree`` and ``TreeSet`` as well as\n  deactivating persistent objects from this package.\n\n4.8.0 (2021-04-14)\n==================\n\n- Make Python 2 forbid the use of type objects as keys (unless a\n  custom metaclass is used that implements comparison as required by\n  BTrees.) On Python 3, types are not orderable so they were already\n  forbidden, but on Python 2 types can be ordered by memory address,\n  which makes them unsuitable for use as keys. See `issue\n  <https://github.com/zopefoundation/BTrees/issues/153>`_.\n\n- Make the ``multiunion``, ``union``, ``intersection``, and\n  ``difference`` functions accept arbitrary Python iterables (that\n  iterate across the correct types). Previously, the Python\n  implementation allowed this, but the C implementation only allowed\n  objects (like ``TreeSet`` or ``Bucket``) defined in the same module\n  providing the function. See `issue 24\n  <https://github.com/zopefoundation/BTrees/issues/24>`_.\n\n- Fix persistency bug in the Python version\n  (`#118 <https://github.com/zopefoundation/BTrees/issues/118>`_).\n\n- Fix ``Tree.__setstate__`` to no longer accept children besides\n  tree or bucket types to prevent crashes. See `PR 143\n  <https://github.com/zopefoundation/BTrees/pull/143>`_ for details.\n\n- Make BTrees, TreeSet, Set and Buckets implements the ``__and__``,\n  ``__or__`` and ``__sub__`` special methods as shortcuts for\n  ``BTrees.Interfaces.IMerge.intersection``,\n  ``BTrees.Interfaces.IMerge.union`` and\n  ``BTrees.Interfaces.IMerge.difference``.\n\n- Add support for Python 3.9.\n\n- Build and upload aarch64 wheels.\n\n- Make a value of ``0`` in the ``PURE_PYTHON`` environment variable\n  require the C extensions (except on PyPy). Previously, and if this\n  variable is unset, missing or unusable C extensions would be\n  silently ignored. With this variable set to ``0``, an\n  ``ImportError`` will be raised if the C extensions are unavailable.\n  See `issue 156\n  <https://github.com/zopefoundation/BTrees/issues/156>`_.\n\n- Make the BTree objects (``BTree``, ``TreeSet``, ``Set``, ``Bucket``)\n  of each module actually provide the interfaces defined in\n  ``BTrees.Interfaces``. Previously, they provided no interfaces.\n\n- Make all the BTree and Bucket objects instances of\n  ``collections.abc.MutableMapping`` (that is, ``isinstance(btree,\n  MutableMapping)`` is now true; no actual inheritance has changed).\n  As part of this, they now provide the ``popitem()`` method.\n\n- Make all the TreeSet and Set objects instances of\n  ``collections.abc.MutableSet`` (that is, ``isinstance(tree_set,\n  MutableSet)`` is now true; no actual inheritance has changed).\n  As part of this, they now provide several more methods, including\n  ``isdisjoint``, ``discard``, and ``pop``, and support in-place\n  mutation operators such as ``tree_set |= other``, ``tree_set +=\n  other``, ``tree_set -= other`` and ``tree_set ^= other``. See `issue\n  121 <https://github.com/zopefoundation/BTrees/issues/121>`_.\n\n- Update the definitions of ``ISized`` and ``IReadSequence`` to simply\n  be ``zope.interface.common.collections.ISized`` and\n  ``zope.interface.common.sequence.IMinimalSequence`` respectively.\n\n- Remove the ``__nonzero__`` interface method from ``ICollection``. No\n  objects actually implemented such a method; instead, the boolean value\n  is typically taken from ``__len__``.\n\n- Adjust the definition of ``ISet`` to produce the same resolution\n  order under the C3 and legacy orderings. This means that the legacy\n  order has changed slightly, but that this package emits no warnings\n  when ``ZOPE_INTERFACE_LOG_CHANGED_IRO=1``. Note that the legacy\n  order was not being used for these objects because the C3 ordering\n  was still consistent; it could only be obtained using\n  ``ZOPE_INTERFACE_USE_LEGACY_IRO=1``. See `PR 159\n  <https://github.com/zopefoundation/BTrees/pull/159>`_ for all the\n  interface updates.\n\n- Fix the ``get``, ``setdefault`` and ``pop`` methods, as well as the\n  ``in`` operator, to not suppress ``POSKeyError`` if the object or\n  subobjects are corrupted. Previously, such errors were logged by\n  ZODB, but not propagated. See `issue 161\n  <https://github.com/zopefoundation/BTrees/issues/161>`_.\n\n4.7.2 (2020-04-07)\n==================\n\n- Fix more cases of C and Python inconsistency. The C implementation\n  now behaves like the Python implementation when it comes to integer\n  overflow for the integer keys for ``in``, ``get`` and ``has_key``.\n  Now they return False, the default value, and False, respectively in\n  both versions if the tested value would overflow or underflow.\n  Previously, the C implementation would raise ``OverflowError`` or\n  ``KeyError``, while the Python implementation functioned as\n  expected. See `issue 140\n  <https://github.com/zopefoundation/BTrees/issues/140>`_.\n\n  .. note::\n     The unspecified true return values of ``has_key``\n     have changed.\n\n\n4.7.1 (2020-03-22)\n==================\n\n- Fix the definitions of ``__all__`` in modules. In 4.7.0, they\n  incorrectly left out names. See `PR 132\n  <https://github.com/zopefoundation/BTrees/pull/132>`_.\n\n- Ensure the interface resolution order of all objects is consistent.\n  See `issue 137 <https://github.com/zopefoundation/BTrees/issues/137>`_.\n\n4.7.0 (2020-03-17)\n==================\n\n- Add unsigned variants of the trees. These use the initial \"U\" for\n  32-bit data and \"Q\" for 64-bit data (for \"quad\", which is similar to\n  what the C ``printf`` function uses and the Python struct module\n  uses).\n\n- Fix the value for ``BTrees.OIBTree.using64bits`` when using the pure Python\n  implementation (PyPy and when ``PURE_PYTHON`` is in the environment).\n\n- Make the errors that are raised when values are out of range more\n  consistent between Python 2 and Python 3 and between 32-bit and\n  64-bit variants.\n\n- Make the Bucket types consistent with the BTree types as updated in\n  versions 4.3.2: Querying for keys with default comparisons or that\n  are not integers no longer raises ``TypeError``.\n\n4.6.1 (2019-11-07)\n==================\n\n- Add support for Python 3.8.\n\n\n4.6.0 (2019-07-30)\n==================\n\n- Drop support for Python 3.4.\n\n- Fix tests against persistent 4.4.\n\n- Stop accidentally installing the 'terryfy' package in macOS wheels.\n  See `issue 98\n  <https://github.com/zopefoundation/BTrees/issues/98>`_.\n\n- Fix segmentation fault in ``bucket_repr()``.  See\n  `issue 106 <https://github.com/zopefoundation/BTrees/issues/106>`_.\n\n\n4.5.1 (2018-08-09)\n==================\n\n- Produce binary wheels for Python 3.7.\n\n- Use pyproject.toml to specify build dependencies. This requires pip\n  18 or later to build from source.\n\n\n4.5.0 (2018-04-23)\n==================\n\n- Add support for Python 3.6 and 3.7.\n- Drop support for Python 3.3.\n- Raise an ``ImportError`` consistently on Python 3 if the C extension for\n  BTrees is used but the ``persistent`` C extension is not available.\n  Previously this could result in an odd ``AttributeError``. See\n  https://github.com/zopefoundation/BTrees/pull/55\n- Fix the possibility of a rare crash in the C extension when\n  deallocating items. See https://github.com/zopefoundation/BTrees/issues/75\n- Respect the ``PURE_PYTHON`` environment variable at runtime even if\n  the C extensions are available. See\n  https://github.com/zopefoundation/BTrees/issues/78\n- Always attempt to build the C extensions, but make their success\n  optional.\n- Fix a ``DeprecationWarning`` that could come from I and L objects in\n  Python 2 in pure-Python mode. See https://github.com/zopefoundation/BTrees/issues/79\n\n4.4.1 (2017-01-24)\n==================\n\nFixed a packaging bug that caused extra files to be included (some of\nwhich caused problems in some platforms).\n\n4.4.0 (2017-01-11)\n==================\n\n- Allow None as a special key (sorted smaller than all others).\n\n  This is a bit of a return to BTrees 3 behavior in that Nones are\n  allowed as keys again.  Other objects with default ordering are\n  still not allowed as keys.\n\n4.3.2 (2017-01-05)\n==================\n\n- Make the CPython implementation consistent with the pure-Python\n  implementation and only check object keys for default comparison\n  when setting keys. In Python 2 this makes it possible to remove keys\n  that were added using a less restrictive version of BTrees. (In\n  Python 3 keys that are unorderable still cannot be removed.)\n  Likewise, all versions can unpickle trees that already had such\n  keys. See: https://github.com/zopefoundation/BTrees/issues/53 and\n  https://github.com/zopefoundation/BTrees/issues/51\n\n- Make the Python implementation consistent with the CPython\n  implementation and check object key identity before checking\n  equality and performing comparisons. This can allow fixing trees\n  that have keys that now have broken comparison functions. See\n  https://github.com/zopefoundation/BTrees/issues/50\n\n- Make the CPython implementation consistent with the pure-Python\n  implementation and no longer raise ``TypeError`` for an object key\n  (in object-keyed trees) with default comparison on ``__getitem__``,\n  ``get`` or ``in`` operations. Instead, the results will be a\n  ``KeyError``, the default value, and ``False``, respectively.\n  Previously, CPython raised a ``TypeError`` in those cases, while the\n  Python implementation behaved as specified.\n\n  Likewise, non-integer keys in integer-keyed trees\n  will raise ``KeyError``, return the default and return ``False``,\n  respectively, in both implementations. Previously, pure-Python\n  raised a ``KeyError``, returned the default, and raised a\n  ``TypeError``, while CPython raised ``TypeError`` in all three cases.\n\n4.3.1 (2016-05-16)\n==================\n\n- Packaging:  fix password used to automate wheel creation on Travis.\n\n4.3.0 (2016-05-10)\n==================\n\n- Fix unexpected ``OverflowError`` when passing 64bit values to long\n  keys / values on Win64.  See:\n  https://github.com/zopefoundation/BTrees/issues/32\n\n- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning\n  the user's global wheel cache.\n\n- Ensure that the pure-Python implementation, used on PyPy and when a C\n  compiler isn't available for CPython, pickles identically to the C\n  version. Unpickling will choose the best available implementation.\n  This change prevents interoperability problems and database corruption if\n  both implementations are in use. While it is no longer possible to\n  pickle a Python implementation and have it unpickle to the Python\n  implementation if the C implementation is available, existing Python\n  pickles will still unpickle to the Python implementation (until\n  pickled again). See:\n  https://github.com/zopefoundation/BTrees/issues/19\n\n- Avoid creating invalid objects when unpickling empty BTrees in a pure-Python\n  environment.\n\n- Drop support for Python 2.6 and 3.2.\n\n4.2.0 (2015-11-13)\n==================\n\n- Add support for Python 3.5.\n\n4.1.4 (2015-06-02)\n==================\n\n- Ensure that pure-Python Bucket and Set objects have a human readable\n  ``__repr__`` like the C versions.\n\n4.1.3 (2015-05-19)\n==================\n\n- Fix ``_p_changed`` when removing items from small pure-Python\n  BTrees/TreeSets and when adding items to small pure-Python Sets. See:\n  https://github.com/zopefoundation/BTrees/issues/13\n\n\n4.1.2 (2015-04-07)\n==================\n\n- Suppress testing 64-bit values in OLBTrees on 32 bit machines.\n  See:  https://github.com/zopefoundation/BTrees/issues/9\n\n- Fix ``_p_changed`` when adding items to small pure-Python\n  BTrees/TreeSets. See:\n  https://github.com/zopefoundation/BTrees/issues/11\n\n\n4.1.1 (2014-12-27)\n==================\n\n- Accomodate long values in pure-Python OLBTrees.\n\n\n4.1.0 (2014-12-26)\n==================\n\n- Add support for PyPy and PyPy3.\n\n- Add support for Python 3.4.\n\n- BTree subclasses can define ``max_leaf_size`` or ``max_internal_size``\n  to control maximum sizes for Bucket/Set and BTree/TreeSet nodes.\n\n- Detect integer overflow on 32-bit machines correctly under Python 3.\n\n- Update pure-Python and C trees / sets to accept explicit None to indicate\n  max / min value for ``minKey``, ``maxKey``.  (PR #3)\n\n- Update pure-Python trees / sets to accept explicit None to indicate\n  open ranges for ``keys``, ``values``, ``items``.  (PR #3)\n\n\n4.0.8 (2013-05-25)\n==================\n\n- Fix value-based comparison for objects under Py3k:  addresses invalid\n  merges of ``[OLI]OBTrees/OBuckets``.\n\n- Ensure that pure-Python implementation of ``OOBTree.byValue`` matches\n  semantics (reversed-sort) of C implementation.\n\n\n4.0.7 (2013-05-22)\n==================\n\n- Issue #2:  compilation error on 32-bit mode of OS/X.\n\n- Test ``PURE_PYTHON`` environment variable support:  if set, the C\n  extensions will not be built, imported, or tested.\n\n\n4.0.6 (2013-05-14)\n==================\n\n- Changed the ``ZODB`` extra to require only the real ``ZODB`` package,\n  rather than the ``ZODB3`` metapackage:  depending on the version used,\n  the metapackage could pull in stale versions of **this** package and\n  ``persistent``.\n\n- Fixed Python version check in ``setup.py``.\n\n\n4.0.5 (2013-01-15)\n==================\n\n- Fit the ``repr`` of bucket objects, which could contain garbage\n  characters.\n\n\n4.0.4 (2013-01-12)\n==================\n\n- Emulate the (private) iterators used by the C extension modules from\n  pure Python.  This change is \"cosmetic\" only:  it prevents the ZCML\n  ``zope.app.security:permission.zcml`` from failing.  The emulated\n  classes are **not** functional, and should be considered implementation\n  details.\n\n- Accomodate buildout to the fact that we no longer bundle a copy\n  of 'persistent.h'.\n\n- Fix test failures on Windows:  no longer rely on overflows from\n  ``sys.maxint``.\n\n\n4.0.3 (2013-01-04)\n==================\n\n- Added ``setup_requires==['persistent']``.\n\n\n4.0.2 (2013-01-03)\n==================\n\n- Updated Trove classifiers.\n\n- Added explicit support for Python 3.2, Python 3.3, and PyPy.\n  Note that the C extensions are not (yet) available on PyPy.\n\n- Python reference implementations now tested separately from the C\n  verions on all platforms.\n\n- 100% unit test coverage.\n\n\n4.0.1 (2012-10-21)\n==================\n\n- Provide local fallback for persistent C header inclusion if the\n  persistent distribution isn't installed. This makes the winbot happy.\n\n\n4.0.0 (2012-10-20)\n==================\n\nPlatform Changes\n----------------\n\n- Dropped support for Python < 2.6.\n\n- Factored ``BTrees`` as a separate distribution.\n\nTesting Changes\n---------------\n\n- All covered platforms tested under ``tox``.\n\n- Added support for continuous integration using ``tox`` and ``jenkins``.\n\n- Added ``setup.py dev`` alias (installs ``nose`` and ``coverage``).\n\n- Dropped dependency on ``zope.testing`` / ``zope.testrunner``:  tests now\n  run with ``setup.py test``.\n\nDocumentation Changes\n---------------------\n\n- Added API reference, generated via Spinx' autodoc.\n\n- Added Sphinx documentation based on ZODB Guide (snippets are exercised\n  via 'tox').\n\n- Added ``setup.py docs`` alias (installs ``Sphinx`` and\n  ``repoze.sphinx.autointerface``).\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Scalable persistent object containers",
    "version": "6.0",
    "project_urls": {
        "Documentation": "https://btrees.readthedocs.io",
        "Homepage": "https://github.com/zopefoundation/BTrees",
        "Issue Tracker": "https://github.com/zopefoundation/BTrees/issues",
        "Sources": "https://github.com/zopefoundation/BTrees"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4144a4f32b5866a6dbeb1e1677a533de61eafdec9b85ff762cd3090396e1e8f9",
                "md5": "a17eeccf701a13b4198d310f42471d33",
                "sha256": "afd9a533a2577566bfadb7b0948655ba28ba2f144440c823c0a76002c16b0216"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a17eeccf701a13b4198d310f42471d33",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 976117,
            "upload_time": "2024-05-30T09:11:54",
            "upload_time_iso_8601": "2024-05-30T09:11:54.569774Z",
            "url": "https://files.pythonhosted.org/packages/41/44/a4f32b5866a6dbeb1e1677a533de61eafdec9b85ff762cd3090396e1e8f9/BTrees-6.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57dd3c7a361703e1046538a842556b374e7ea44f0ce61b7091047f9afbff0f97",
                "md5": "aab292f3f4f3fb9293a79185a4a399ac",
                "sha256": "23ed375fc1257613c8ee0c41ec915b238117c774f262263ed8372b4b0200780a"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aab292f3f4f3fb9293a79185a4a399ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 963574,
            "upload_time": "2024-05-30T09:11:56",
            "upload_time_iso_8601": "2024-05-30T09:11:56.171027Z",
            "url": "https://files.pythonhosted.org/packages/57/dd/3c7a361703e1046538a842556b374e7ea44f0ce61b7091047f9afbff0f97/BTrees-6.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e8a264e921b5d69bd158856a3703d7096740caa4181f91b1f9dd9f13dc91754",
                "md5": "ccf44356bca1b79c3b5570ef78247f10",
                "sha256": "dfcc7cea0ed5a135fa6ae23cf205bcb9ab542cbef2a6815f9770138bef319e49"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ccf44356bca1b79c3b5570ef78247f10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1028959,
            "upload_time": "2024-05-30T09:12:21",
            "upload_time_iso_8601": "2024-05-30T09:12:21.452168Z",
            "url": "https://files.pythonhosted.org/packages/8e/8a/264e921b5d69bd158856a3703d7096740caa4181f91b1f9dd9f13dc91754/BTrees-6.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "813504898af97806e5009eac15b8cb09f3a64b44671255f7b413458bff7fee31",
                "md5": "5aa7433a0a34e28f0f046988fba2274c",
                "sha256": "d452ee761c3b4aa809bd373011253b5086331f43b981c1030d6307b3e84f69c5"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5aa7433a0a34e28f0f046988fba2274c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 976122,
            "upload_time": "2024-05-30T09:11:36",
            "upload_time_iso_8601": "2024-05-30T09:11:36.249438Z",
            "url": "https://files.pythonhosted.org/packages/81/35/04898af97806e5009eac15b8cb09f3a64b44671255f7b413458bff7fee31/BTrees-6.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d032fc1ca3c62f0921391a8f89b2c7b5d74923f6619916279d26ad0bba0cf6fa",
                "md5": "ef483b4dda32c6b1703077a3a5598902",
                "sha256": "272c31d9fb4896413c50b76ee67e80c5a804f9fdbab9ca0b676e6e3f8bce015b"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ef483b4dda32c6b1703077a3a5598902",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 963581,
            "upload_time": "2024-05-30T09:11:38",
            "upload_time_iso_8601": "2024-05-30T09:11:38.547524Z",
            "url": "https://files.pythonhosted.org/packages/d0/32/fc1ca3c62f0921391a8f89b2c7b5d74923f6619916279d26ad0bba0cf6fa/BTrees-6.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "548a211585741f0a5d990224477f27c0fab7df242e329efb38de24f1bf1b4623",
                "md5": "fbd7ef721de1b0e7d8dd328ba0ec5461",
                "sha256": "c20f324aa429fe1d9ff64a8c8fbebcdb9e029220ba9c07f51f77150f1ce24ebf"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fbd7ef721de1b0e7d8dd328ba0ec5461",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1028905,
            "upload_time": "2024-05-30T09:11:40",
            "upload_time_iso_8601": "2024-05-30T09:11:40.686704Z",
            "url": "https://files.pythonhosted.org/packages/54/8a/211585741f0a5d990224477f27c0fab7df242e329efb38de24f1bf1b4623/BTrees-6.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c28e0c4cea2ddfe790f9b3a1ccb15e986716481bd5da72fc36d0ae1eb370668a",
                "md5": "445fc4476ca3db6a0dc548b997bb57d7",
                "sha256": "969f11f77a62912b3724ab936dcd4014f0d9bfe0bfd5adbd0f008f609742f678"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "445fc4476ca3db6a0dc548b997bb57d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 990846,
            "upload_time": "2024-05-30T09:12:05",
            "upload_time_iso_8601": "2024-05-30T09:12:05.322239Z",
            "url": "https://files.pythonhosted.org/packages/c2/8e/0c4cea2ddfe790f9b3a1ccb15e986716481bd5da72fc36d0ae1eb370668a/BTrees-6.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f042cc3cc453e02e7afb51941b3e7572d86c17921b8d8a41856cfa249a3c6a8",
                "md5": "4bdc614055597ba4e3fe57e7c4770331",
                "sha256": "32b13b3f7671551861c37d8e5533e266947c8867f3e72fac8cc256dd24ca2b5a"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4bdc614055597ba4e3fe57e7c4770331",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 973426,
            "upload_time": "2024-05-30T09:12:08",
            "upload_time_iso_8601": "2024-05-30T09:12:08.186651Z",
            "url": "https://files.pythonhosted.org/packages/7f/04/2cc3cc453e02e7afb51941b3e7572d86c17921b8d8a41856cfa249a3c6a8/BTrees-6.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f251200de33a933ad29a340155c61fb63edf77ce666888d88db2af8892408cb",
                "md5": "2d373cb2c4e490b43f086a8310e87fa0",
                "sha256": "dc71a95c48f56629c285fb174c37c55aea7cfbb4c92f20299d99d1d63f1370ab"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2d373cb2c4e490b43f086a8310e87fa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1035152,
            "upload_time": "2024-05-30T09:12:47",
            "upload_time_iso_8601": "2024-05-30T09:12:47.738286Z",
            "url": "https://files.pythonhosted.org/packages/5f/25/1200de33a933ad29a340155c61fb63edf77ce666888d88db2af8892408cb/BTrees-6.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb49f1b5d197320359c8ebe7ad4af928f4302287db8421d2f35e8295ea7b9ea8",
                "md5": "acdedf2030d620a6be1d28dfc5c20d1e",
                "sha256": "68873a394daff453978f43eabd523b88d30be21d0a405a81ea4942808f582c02"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acdedf2030d620a6be1d28dfc5c20d1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 978041,
            "upload_time": "2024-05-30T09:12:12",
            "upload_time_iso_8601": "2024-05-30T09:12:12.800947Z",
            "url": "https://files.pythonhosted.org/packages/eb/49/f1b5d197320359c8ebe7ad4af928f4302287db8421d2f35e8295ea7b9ea8/BTrees-6.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef68e1cf336b6a2d0ee245b81c7578c23120ac9b0d18281c681b4c32a886168f",
                "md5": "a15e4bca9382456953b0c6553a773eca",
                "sha256": "c6b0e594522ce02ae8ed44570014d23deaa6ab18a6f431707fab7568cd060cee"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a15e4bca9382456953b0c6553a773eca",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 964747,
            "upload_time": "2024-05-30T09:12:14",
            "upload_time_iso_8601": "2024-05-30T09:12:14.479564Z",
            "url": "https://files.pythonhosted.org/packages/ef/68/e1cf336b6a2d0ee245b81c7578c23120ac9b0d18281c681b4c32a886168f/BTrees-6.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f26635f73ea8074baf891453b81bf054d6e34a632617ce7847b86b3a212fc01a",
                "md5": "4739d25a742d6a8c87ae5c846d83af60",
                "sha256": "87b9330436eb53f6e34baab8c132ddbd7a7610482cf9fe3fbad073767607b0de"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4739d25a742d6a8c87ae5c846d83af60",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1030772,
            "upload_time": "2024-05-30T09:12:14",
            "upload_time_iso_8601": "2024-05-30T09:12:14.242767Z",
            "url": "https://files.pythonhosted.org/packages/f2/66/35f73ea8074baf891453b81bf054d6e34a632617ce7847b86b3a212fc01a/BTrees-6.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61faf43adc929bd9d6e0a28e0769944fcaea89da638eee68f34be0454851aad0",
                "md5": "c485a6c5cf9ec2dc432f62fb45214347",
                "sha256": "a9d402916cd2d86e7fcdbd2de1c4e7aaf9e9f00772ce65f346657d066ca218f0"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c485a6c5cf9ec2dc432f62fb45214347",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 976146,
            "upload_time": "2024-05-30T09:13:05",
            "upload_time_iso_8601": "2024-05-30T09:13:05.340170Z",
            "url": "https://files.pythonhosted.org/packages/61/fa/f43adc929bd9d6e0a28e0769944fcaea89da638eee68f34be0454851aad0/BTrees-6.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b167c989000da9ad85cea460e113dba2b2b2d8475808e4d6496caa5f361d5f42",
                "md5": "b2c02ef6b97911036243bb938ff9e72d",
                "sha256": "b386f9c854fd699c22d2a06aa8fbe06f83aada8607f379263184e2c6699ead19"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b2c02ef6b97911036243bb938ff9e72d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 963609,
            "upload_time": "2024-05-30T09:13:07",
            "upload_time_iso_8601": "2024-05-30T09:13:07.729595Z",
            "url": "https://files.pythonhosted.org/packages/b1/67/c989000da9ad85cea460e113dba2b2b2d8475808e4d6496caa5f361d5f42/BTrees-6.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b52bfe84410a22ec8f6a165d6fd644088d794e9cca37981dd5043248e1864e6b",
                "md5": "18d92abade2661b3f150f921cefc962b",
                "sha256": "111549f895d3291c7108cb2ecf8ff6f81847e736c6b6b1bc322517552cc224bf"
            },
            "downloads": -1,
            "filename": "BTrees-6.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "18d92abade2661b3f150f921cefc962b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1030436,
            "upload_time": "2024-05-30T09:12:28",
            "upload_time_iso_8601": "2024-05-30T09:12:28.454095Z",
            "url": "https://files.pythonhosted.org/packages/b5/2b/fe84410a22ec8f6a165d6fd644088d794e9cca37981dd5043248e1864e6b/BTrees-6.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "454eb0b8b0113835347d7a83647df90acbf11d7be0027844651cf369abcbb15c",
                "md5": "f48da3b13040324f3ad5db51347687e4",
                "sha256": "f69b8cdd33434e13e180216bb82ae0b7cd31fadfb7cc559695cb37319ca35ff0"
            },
            "downloads": -1,
            "filename": "BTrees-6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f48da3b13040324f3ad5db51347687e4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 245186,
            "upload_time": "2024-05-30T09:10:40",
            "upload_time_iso_8601": "2024-05-30T09:10:40.617579Z",
            "url": "https://files.pythonhosted.org/packages/45/4e/b0b8b0113835347d7a83647df90acbf11d7be0027844651cf369abcbb15c/BTrees-6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-30 09:10:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "BTrees",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "btrees"
}
        
Elapsed time: 0.24920s