15
0

- Update to 3.4.9:

* Version 3.4.9, in addition to implementing __iadd__, also includes a
     significantly faster implementation for __add__.  For extending a given
     instance of BitVector, the implementation for __iadd__ adds bits to the
     existing instance as opposed to creating a new instance.  These changes
     to the module should make it easier to solve larger problems more
     quickly with BitVector.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-BitVector?expand=0&rev=3
This commit is contained in:
Tomáš Chvátal
2019-04-01 12:57:49 +00:00
committed by Git OBS Bridge
parent e12f50639a
commit 477aca89b9
4 changed files with 18 additions and 8 deletions

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Mon Apr 1 12:55:55 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 3.4.9:
* Version 3.4.9, in addition to implementing __iadd__, also includes a
significantly faster implementation for __add__. For extending a given
instance of BitVector, the implementation for __iadd__ adds bits to the
existing instance as opposed to creating a new instance. These changes
to the module should make it easier to solve larger problems more
quickly with BitVector.
-------------------------------------------------------------------
Fri Aug 10 15:46:03 UTC 2018 - tchvatal@suse.com