This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kxroberto
Recipients ggenellina, hniksic, kxroberto
Date 2009-05-15.19:53:33
SpamBayes Score 9.5783565e-05
Marked as misclassified No
Message-id <1242417215.6.0.242015809323.issue5141@psf.upfronthosting.co.za>
In-reply-to
Content
I had a similar problem creating a C-fast array.array interface for Cython.
The array.pxd package here (latest zip file)
http://trac.cython.org/cython_trac/ticket/314
includes a arrayarray.h file, which provides ways for efficient creation
and growth from C (extend, extend_buffer, resize, resize_smart ). Its
probably in one of the next Cython distributions anyway, and will be
maintained. And perhaps array2 and arrayM extension subclasses (very
light-weight numpy) with public API coming soon too.
It respects the different Python versions, so its a lite "quasi API".
And in case there will be a (unlikely) change in future Pythons, the
Cython people will take care as far as there is no official API coming up.
Or perhaps most people with such interest use Cython anyway.
History
Date User Action Args
2009-05-15 19:53:36kxrobertosetrecipients: + kxroberto, ggenellina, hniksic
2009-05-15 19:53:35kxrobertosetmessageid: <1242417215.6.0.242015809323.issue5141@psf.upfronthosting.co.za>
2009-05-15 19:53:34kxrobertolinkissue5141 messages
2009-05-15 19:53:33kxrobertocreate