1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-bitarray |
---|
8 | version 0.8.1 |
---|
9 | categories python |
---|
10 | platforms darwin |
---|
11 | license PSF |
---|
12 | python.versions 26 27 |
---|
13 | |
---|
14 | homepage https://github.com/ilanschnell/bitarray |
---|
15 | description This module provides an object type which efficiently represents an array of booleans. |
---|
16 | long_description This module provides an object type which efficiently represents \ |
---|
17 | an array of booleans. Bitarrays are sequence types and behave very \ |
---|
18 | much like usual lists. Eight bits are represented by one byte in \ |
---|
19 | a contiguous block of memory. The user can select between two \ |
---|
20 | representations\; little-endian and big-endian. All of the functionality \ |
---|
21 | is implemented in C. |
---|
22 | maintainers node99.org:sean openmaintainer |
---|
23 | |
---|
24 | fetch.type git |
---|
25 | git.url https://github.com/ilanschnell/bitarray.git |
---|