Re: [Numpy-discussion] NA mask C-API documentation

2011-08-26 Thread Christopher Jordan-Squire
Regarding ufuncs and NA's, all the mechanics of handling NA from a ufunc are in the PyUFunc_FromFuncAndData function, right? So the ufunc creation docs don't have to be updated to include NA's? -Chris JS On Wed, Aug 24, 2011 at 7:08 PM, Mark Wiebe mwwi...@gmail.com wrote: I've added C-API

Re: [Numpy-discussion] NA mask C-API documentation

2011-08-26 Thread Mark Wiebe
On Fri, Aug 26, 2011 at 11:47 AM, Christopher Jordan-Squire cjord...@uw.edu wrote: Regarding ufuncs and NA's, all the mechanics of handling NA from a ufunc are in the PyUFunc_FromFuncAndData function, right? So the ufunc creation docs don't have to be updated to include NA's? That's

[Numpy-discussion] NA mask C-API documentation

2011-08-24 Thread Mark Wiebe
I've added C-API documentation to the missingdata branch. The .rst file (beware of the github rst parser though, it drops some of the content) is here: https://github.com/m-paradox/numpy/blob/missingdata/doc/source/reference/c-api.maskna.rst and I made a small example module which goes with it