File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1- 2025-08-XX 3.6.1:
1+ 2025-08-12 3.6.1:
22-------------------
33 * add development files for statistical tests in `devel/random/`
44 * optimize `util.sum_indices()`
Original file line number Diff line number Diff line change 11Change log
22==========
33
4+ **3.6.1 ** (2025-08-12):
5+
6+ * add development files for statistical tests in ``devel/random/ ``
7+ * optimize ``util.sum_indices() ``
8+ * fix RecursionError in ``util.random_k() ``, see `#239 <https://github.com/ilanschnell/bitarray/issues/239 >`__
9+ * add ``devel/test_sum_indices.py ``
10+
11+
412**3.6.0 ** (2025-07-29):
513
614* add ``util.random_k() ``, see `#237 <https://github.com/ilanschnell/bitarray/issues/237 >`__
Original file line number Diff line number Diff line change 11Reference
22=========
33
4- bitarray version: 3.6.0 -- `change log <https://github.com/ilanschnell/bitarray/blob/master/doc/changelog.rst >`__
4+ bitarray version: 3.6.1 -- `change log <https://github.com/ilanschnell/bitarray/blob/master/doc/changelog.rst >`__
55
66In the following, ``item `` and ``value `` are usually a single bit -
77an integer 0 or 1.
@@ -577,7 +577,7 @@ This sub-module was added in version 1.2.
577577
578578``sum_indices(a, /) `` -> int
579579 Return sum of indices of all active bits in bitarray ``a ``.
580- This is equivalent to ``sum(i for i, v in enumerate(a) if v) ``.
580+ Equivalent to ``sum(i for i, v in enumerate(a) if v) ``.
581581
582582 New in version 3.6
583583
You can’t perform that action at this time.
0 commit comments