summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* REF: use new hook signature.David Cournapeau2011-08-295-6/+6
* REF: use new recursive hook file support.David Cournapeau2011-08-291-0/+24
* REF: define hook file locally.David Cournapeau2011-08-295-0/+10
* ENH: update to last bento.David Cournapeau2011-08-295-25/+24
* ENH: remove unneeded waf recursive context path magic.David Cournapeau2011-08-291-5/+0
* BUG: fix more separate-compilation issues.David Cournapeau2011-08-291-34/+44
* BUG: fix renaming of new iterator source file.David Cournapeau2011-08-291-1/+1
* BUG: build waf build utils in separate module to avoid 'spurious' imports.David Cournapeau2011-08-293-479/+481
* ENH: add support for separate compilation of multiarray (still does not work ...David Cournapeau2011-08-291-1/+38
* BUG: fix unicode config checks.David Cournapeau2011-08-291-2/+11
* BUG: use 1/0 instead of booleans in config.hDavid Cournapeau2011-08-291-0/+8
* FEAT: add wide unicode detection.David Cournapeau2011-08-291-0/+10
* FEAT: add basics for separate build.David Cournapeau2011-08-291-2/+7
* BUG: remove unnecessary header inclusion which breaks builds.David Cournapeau2011-08-291-1/+0
* ENH: remove temporary hacks for recurse path settings.David Cournapeau2011-08-295-64/+8
* BUG: build _dotblas as callback.David Cournapeau2011-08-291-6/+7
* ENH: add fft/random support.David Cournapeau2011-08-295-3/+73
* FEAT: add numpy.linalg.David Cournapeau2011-08-292-0/+46
* FEAT: numpy.core and numpy.lib both buildDavid Cournapeau2011-08-294-2/+243
* BENTO: add complex checks.David Cournapeau2011-08-292-0/+48
* BENTO: check for inline support.David Cournapeau2011-08-292-0/+39
* BENTO: add math runtime checks.David Cournapeau2011-08-292-0/+238
* BENTO: add signal/smp stuff in configure.David Cournapeau2011-08-291-0/+46
* BENTO: add basic type checks.David Cournapeau2011-08-292-0/+163
* BENTO: check for C99 formats + add check_declaration.David Cournapeau2011-08-292-0/+35
* BENTO: start support for numpyconfig.David Cournapeau2011-08-291-1/+26
* BENTO: start numpy.core configuration + waf_utils helpers.David Cournapeau2011-08-291-0/+0
* BENTO: start numpy.core configurationDavid Cournapeau2011-08-293-0/+136
* ENH: missingdata: Make PyArray_Converter and PyArray_OutputConverter safer fo...Mark Wiebe2011-08-276-24/+96
* ENH: nditer: Change the Python nditer exposure to automatically add NPY_ITER_...Mark Wiebe2011-08-272-5/+50
* ENH: missingdata: Make comparisons with NA return NA(dtype='bool')Mark Wiebe2011-08-273-63/+85
* BLD: core: onefile build fix and Python3 compatibility changeMark Wiebe2011-08-272-3/+4
* TST: dtype: Adjust void dtype test to pass without raising a zero-size exceptionMark Wiebe2011-08-271-1/+1
* TST: missingdata: Write some tests for the np.any and np.all NA behaviorMark Wiebe2011-08-272-7/+87
* ENH: missingdata: Make numpy.all follow the NA && False == False ruleMark Wiebe2011-08-279-95/+172
* ENH: missingdata: Make numpy.all follow the NA || True == True ruleMark Wiebe2011-08-2710-45/+508
* DOC: missingdata: Add introductory documentation for NA-masked arraysMark Wiebe2011-08-271-0/+38
* ENH: core: Rename PyArrayObject_fieldaccess to PyArrayObject_fieldsMark Wiebe2011-08-2719-135/+135
* DOC: missingdata: Add example of a C-API function supporting NA masksMark Wiebe2011-08-271-1/+2
* ENH: missingdata: Finish adding C-API access to the NpyNA objectMark Wiebe2011-08-276-47/+66
* ENH: missingdata: Expose Npy_NA as a global singleton, same as Py_NoneMark Wiebe2011-08-274-5/+6
* ENH: missingdata: Rename na_singleton.[ch] to na_object.[ch]Mark Wiebe2011-08-2715-15/+16
* BUG: missingdata: Add support for NA masks to the order='K' case of np.ravelMark Wiebe2011-08-272-33/+57
* ENH: missingdata: Add maskna= and ownmaskna= parameters to np.asarray and fri...Mark Wiebe2011-08-276-38/+182
* ENH: missingdata: Add maskna= flag to np.identity constructorMark Wiebe2011-08-272-4/+13
* ENH: missingdata: Add maskna= flag to np.eye constructorMark Wiebe2011-08-273-11/+24
* BUG: umath: Make the ufunc follow the actual priority for __r<op>__Mark Wiebe2011-08-271-18/+22
* ENH: core: Add static caching of the callables for C to core._method callsMark Wiebe2011-08-272-19/+147
* ENH: missingdata: Add skipna=, keepdims= parameters to methodsMark Wiebe2011-08-276-225/+146
* ENH: missingdata: Add support for identity-less skipna reductions with ndim > 1Mark Wiebe2011-08-273-10/+310