[issue5141] C API for appending to arrays

2020-08-07 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5141] C API for appending to arrays

2020-06-25 Thread STINNER Victor
Change by STINNER Victor : -- components: +C API ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5141] C API for appending to arrays

2012-11-04 Thread Bradley Froehle
Changes by Bradley Froehle brad.froe...@gmail.com: -- nosy: +bfroehle ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5141 ___ ___ Python-bugs-list

[issue5141] C API for appending to arrays

2012-11-03 Thread Ramchandra Apte
Changes by Ramchandra Apte maniandra...@gmail.com: -- components: +Library (Lib) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5141 ___ ___

[issue5141] C API for appending to arrays

2009-05-16 Thread kxroberto
kxroberto kxrobe...@users.sourceforge.net added the comment: A first thing would be to select a suitable prefix name for the Array API. Because the Numpy people have 'stolen' PyArray_ instead of staying home with PyNDArray_ or so ;-) In case sb goes into this: Other than PyList_ like stuff and

[issue5141] C API for appending to arrays

2009-05-15 Thread kxroberto
kxroberto kxrobe...@users.sourceforge.net added the comment: 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

[issue5141] C API for appending to arrays

2009-05-15 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: This has more chances of seeing some progress if you propose a patch. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5141 ___

[issue5141] C API for appending to arrays

2009-02-05 Thread Hrvoje Nikšić
Hrvoje Nikšić hnik...@gmail.com added the comment: Yes, and I use it in the second example, but the buffer interface doesn't really help with adding new elements into the array. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5141

[issue5141] C API for appending to arrays

2009-02-04 Thread Gabriel Genellina
Gabriel Genellina gagsl-...@yahoo.com.ar added the comment: Arrays already support the buffer interface -- nosy: +gagenellina ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5141 ___

[issue5141] C API for appending to arrays

2009-02-03 Thread Hrvoje Nikšić
New submission from Hrvoje Nikšić hnik...@gmail.com: The array.array type is an excellent type for storing a large amount of native elements, such as integers, chars, doubles, etc., without involving the heavy machinery of numpy. It's both blazingly fast and reasonably efficient with memory.