Hi. As of today, I am experiencing bugs with intbitset. I tried a fresh install on my machine (CentOS 5, Python 2.4) and this is what I get:
[bthiell@localhost invenio]$ python Python 2.4.3 (#1, Sep 21 2011, 19:55:41) [GCC 4.1.2 20080704 (Red Hat 4.1.2-51)] on linux2 >>> import invenio.intbitset Traceback (most recent call last): File "<stdin>", line 1, in ? File "intbitset.pyx", line 783, in init lib.intbitset (intbitset.c:10023) TypeError: 'builtin_function_or_method' object has only read-only attributes (assign to .__module__) [bthiell@localhost invenio]$ python Python 2.4.3 (#1, Sep 21 2011, 19:55:41) [GCC 4.1.2 20080704 (Red Hat 4.1.2-51)] on linux2 >>> from invenio.intbitset import intbitset Traceback (most recent call last): File "<stdin>", line 1, in ? File "intbitset.pyx", line 783, in init lib.intbitset (intbitset.c:10023) TypeError: 'builtin_function_or_method' object has only read-only attributes (assign to .__module__) >>> from invenio.intbitset import intbitset >>> intbitset(range(10)) Segmentation fault Am I the only one to see this? Cheers. -- Benoit Thiell The SAO/NASA Astrophysics Data System http://adswww.harvard.edu/

