From 8a2c07a85689e7f79890138e97624d266b08c062 Mon Sep 17 00:00:00 2001 From: nomnombtc Date: Mon, 11 Aug 2025 21:20:53 +0700 Subject: python/python3-bitarray: Added (efficient arrays of booleans). Signed-off-by: Willy Sudiarto Raharjo --- python/python3-bitarray/README | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 python/python3-bitarray/README (limited to 'python/python3-bitarray/README') diff --git a/python/python3-bitarray/README b/python/python3-bitarray/README new file mode 100644 index 0000000000..6aef40b34a --- /dev/null +++ b/python/python3-bitarray/README @@ -0,0 +1,11 @@ +Efficient arrays of booleans + +This library provides an object type which efficiently represents an +array of booleans. Bitarrays are sequence types and behave very much +like usual lists. Eight bits are represented by one byte in a +contiguous block of memory. The user can select between two +representations: little-endian and big-endian. All functionality is +implemented in C. Methods for accessing the machine representation are +provided, including the ability to import and export buffers. This +allows creating bitarrays that are mapped to other objects, including +memory-mapped files. -- cgit v1.2.3