14
0

- update to 2.8.5:

* speedup unaligned copies by always using word shifts (in
    combination with builtin byte swap 64 when available) when
    bit-endianness and machine byte-order are opposite
  * add ``HAVE_BUILTIN_BSWAP64`` to header
  * avoid misaligned pointers when casting to ``(uint64_t *)``
  * add tests

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitarray?expand=0&rev=46
This commit is contained in:
2023-12-11 22:14:33 +00:00
committed by Git OBS Bridge
parent e775533eaa
commit cc0ffcd814
4 changed files with 15 additions and 4 deletions

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Mon Dec 11 22:13:34 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 2.8.5:
* speedup unaligned copies by always using word shifts (in
combination with builtin byte swap 64 when available) when
bit-endianness and machine byte-order are opposite
* add ``HAVE_BUILTIN_BSWAP64`` to header
* avoid misaligned pointers when casting to ``(uint64_t *)``
* add tests
-------------------------------------------------------------------
Tue Dec 5 17:42:19 UTC 2023 - Dirk Müller <dmueller@suse.com>