Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python3-BTrees-4.7.2-lp152.1.1 RPM for aarch64

From OpenSuSE Ports Leap 15.2 for aarch64

Name: python3-BTrees Distribution: openSUSE Leap 15.2
Version: 4.7.2 Vendor: openSUSE
Release: lp152.1.1 Build date: Fri Apr 17 14:07:04 2020
Group: Unspecified Build host: obs-arm-9
Size: 4309510 Source RPM: python-BTrees-4.7.2-lp152.1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/zopefoundation/BTrees
Summary: Persistent B-tree object containers for Python
This package contains a generic BTrees implementation for Python. It is
mainly used by the ZODB, though.

Note that the data manager API, BTrees.interfaces.IDataManager, is
syntactically simple, but semantically complex. The semantics were not easy to
express in the interface. This could probably use more work. The semantics are
presented in detail through examples of a sample data manager in
BTrees.tests.test_SampleDataManager.

Provides

Requires

License

ZPL-2.1

Changelog

* Tue Apr 14 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Do not bother with documentation
  - Update to 4.7.2:
    * Fix more cases of C and Python inconsistency.
* Wed Mar 25 2020 Marketa Calabkova <mcalabkova@suse.com>
  - update to 4.7.1
    * Ensure the interface resolution order of all objects is consistent.
      See `issue 137 <https://github.com/zopefoundation/BTrees/issues/137>`_.
    * 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``.
* Mon Jan 13 2020 Marketa Calabkova <mcalabkova@suse.com>
  - update to 4.6.1
    * Add support for Python 3.8.
* Mon Oct 14 2019 Matej Cepl <mcepl@suse.com>
  - Replace %fdupes -s with plain %fdupes; hardlinks are better.
* Mon Aug 05 2019 pgajdos@suse.com
  - version update to 4.6.0
    * 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/issue/106>`_.
* Sun Feb 10 2019 John Vandenberg <jayvdb@gmail.com>
  - Update to v4.5.1
    + Use pyproject.toml to specify build dependencies. This requires pip
      18 or later to build from source.
  - 4.5.0
    + Add support for Python 3.6 and 3.7, and 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``.
    + Fix the possibility of a rare crash in the C extension when
      deallocating items.
    + Respect the ``PURE_PYTHON`` environment variable at runtime even if
      the C extensions are available.
    + 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.
  - Use %license
* Mon Jul 10 2017 jengelh@inai.de
  - Fix duplicate summaries
* Sat Jun 24 2017 aloisio@gmx.com
  - Update to version 4.4.1
    * Fixed a packaging bug that caused extra files to be included
      (some of which caused problems in some platforms).
    4.4.0:
    * 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:
    * 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:
    * Packaging: fix password used to automate wheel creation on
      Travis.
    4.3.0:
    * 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:
    * Add support for Python 3.5.
    4.1.4:
    * Ensure that pure-Python Bucket and Set objects have a human
      readable __repr__ like the C versions.
    4.1.3:
    * 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
  - Converted to single-spec
* Mon Apr 27 2015 benoit.monin@gmx.fr
  - update to version 4.1.2:
    * Suppress testing 64-bit values in OLBTrees on 32 bit machines.
    * Fix _p_changed for small pure-Python BTrees.
  - make the tests less verbose to avoid spamming the build log
* Fri Feb 06 2015 hpj@urpla.net
  - version 4.1.1
    - 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
      pen ranges for keys, values, items. (PR #3)

Files

/usr/lib64/python3.6/site-packages/BTrees
/usr/lib64/python3.6/site-packages/BTrees-4.7.2-py3.6.egg-info
/usr/lib64/python3.6/site-packages/BTrees-4.7.2-py3.6.egg-info/PKG-INFO
/usr/lib64/python3.6/site-packages/BTrees-4.7.2-py3.6.egg-info/SOURCES.txt
/usr/lib64/python3.6/site-packages/BTrees-4.7.2-py3.6.egg-info/dependency_links.txt
/usr/lib64/python3.6/site-packages/BTrees-4.7.2-py3.6.egg-info/entry_points.txt
/usr/lib64/python3.6/site-packages/BTrees-4.7.2-py3.6.egg-info/not-zip-safe
/usr/lib64/python3.6/site-packages/BTrees-4.7.2-py3.6.egg-info/requires.txt
/usr/lib64/python3.6/site-packages/BTrees-4.7.2-py3.6.egg-info/top_level.txt
/usr/lib64/python3.6/site-packages/BTrees/Interfaces.py
/usr/lib64/python3.6/site-packages/BTrees/Length.py
/usr/lib64/python3.6/site-packages/BTrees/_IFBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_IIBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_IOBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_IUBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_LFBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_LLBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_LOBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_LQBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_OIBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_OLBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_OOBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_OQBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_OUBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_QFBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_QLBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_QOBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_QQBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_UFBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_UIBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_UOBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_UUBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/__init__.py
/usr/lib64/python3.6/site-packages/BTrees/__pycache__
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/Interfaces.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/Interfaces.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/Length.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/Length.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/__init__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/_base.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/_base.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/_compat.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/_compat.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/_datatypes.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/_datatypes.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/_module_builder.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/_module_builder.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/check.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/check.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/fsBTree.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/fsBTree.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/utils.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/__pycache__/utils.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/_base.py
/usr/lib64/python3.6/site-packages/BTrees/_compat.py
/usr/lib64/python3.6/site-packages/BTrees/_datatypes.py
/usr/lib64/python3.6/site-packages/BTrees/_fsBTree.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/BTrees/_module_builder.py
/usr/lib64/python3.6/site-packages/BTrees/check.py
/usr/lib64/python3.6/site-packages/BTrees/fsBTree.py
/usr/lib64/python3.6/site-packages/BTrees/tests
/usr/lib64/python3.6/site-packages/BTrees/tests/__init__.py
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/_test_builder.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/_test_builder.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/common.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/common.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/testBTrees.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/testBTrees.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/testBTreesUnicode.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/testBTreesUnicode.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/testConflict.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/testConflict.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_Length.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_Length.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_OOBTree.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_OOBTree.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test__base.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test__base.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test__datatypes.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test__datatypes.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_btreesubclass.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_btreesubclass.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_check.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_check.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_dynamic_btrees.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_dynamic_btrees.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_fsBTree.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_fsBTree.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_utils.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/__pycache__/test_utils.cpython-36.pyc
/usr/lib64/python3.6/site-packages/BTrees/tests/_test_builder.py
/usr/lib64/python3.6/site-packages/BTrees/tests/common.py
/usr/lib64/python3.6/site-packages/BTrees/tests/testBTrees.py
/usr/lib64/python3.6/site-packages/BTrees/tests/testBTreesUnicode.py
/usr/lib64/python3.6/site-packages/BTrees/tests/testConflict.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test_Length.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test_OOBTree.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test__base.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test__datatypes.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test_btreesubclass.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test_check.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test_dynamic_btrees.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test_fsBTree.py
/usr/lib64/python3.6/site-packages/BTrees/tests/test_utils.py
/usr/lib64/python3.6/site-packages/BTrees/utils.py
/usr/share/doc/packages/python3-BTrees
/usr/share/doc/packages/python3-BTrees/CHANGES.rst
/usr/share/doc/packages/python3-BTrees/PKG-INFO
/usr/share/doc/packages/python3-BTrees/README.rst
/usr/share/licenses/python3-BTrees
/usr/share/licenses/python3-BTrees/COPYRIGHT.txt
/usr/share/licenses/python3-BTrees/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:09:08 2024