summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* 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
* ENH: missingdata: Future-proof AssignNA and AssignMaskNA for later multi-NA s...Mark Wiebe2011-08-277-30/+39
* ENH: missingdata: Move ReduceMaskNAArray out of the public APIMark Wiebe2011-08-274-17/+59
* ENH: missingdata: Add wheremask to PyArray_ContainsNAMark Wiebe2011-08-2710-52/+243
* ENH: ufunc: Remove CreateReduceResult and InitializeReduceResult from the APIMark Wiebe2011-08-273-139/+90
* BUG: dtype: Mitigate crash bug for some kinds of dtype inputsMark Wiebe2011-08-273-5/+21
* ENH: missingdata: Make ndarray.view validate the maskna= parameter betterMark Wiebe2011-08-272-4/+38
* ENH: missingdata: Add maskna= parameter to np.copy and ndarray.copyMark Wiebe2011-08-278-156/+319
* ENH: ufunc: Add a mask dtype parameter to the masked ufunc loop selectorMark Wiebe2011-08-274-1/+15
* ENH: umath: Switch PyUFunc_Reduce to call PyArray_ReduceWrapper to simplify codeMark Wiebe2011-08-2710-621/+480
* ENH: umath: Add checking for reorderable ufuncs, add PyArray_ReduceWrapper to...Mark Wiebe2011-08-279-53/+261
* ENH: ufunc: Separate type resolution from loop selectionMark Wiebe2011-08-276-745/+757
* BUG: missingdata: Fix long double printing of NAsMark Wiebe2011-08-271-3/+3
* BUG: missingdata: np.isna function wasn't accepting object arraysMark Wiebe2011-08-271-1/+7
* ENH: missingdata: Improve error message when assigning NA to non-NA-masked ar...Mark Wiebe2011-08-273-4/+73
* BUG: repr: Make NA line up in the float array repr like inf and nanMark Wiebe2011-08-272-3/+3
* ENH: missingdata: Change NA repr to use strings like the dtype repr doesMark Wiebe2011-08-275-53/+77
* ENH: missingdata: Add maskna= parameter to np.linspace and np.logspaceMark Wiebe2011-08-272-7/+26
* ENH: missingdata: Add the maskna= parameter to np.ones and np.ones_likeMark Wiebe2011-08-2710-87/+154
* STY: core: Move some misc converters into conversion_utils.c to clean things upMark Wiebe2011-08-273-220/+220
* BUG: ufunc: Missed a small update for the unitless reduction caseMark Wiebe2011-08-272-3/+3
* DOC: nditer: Improve the comment doc about the new NpyIter_IsFirstVisit functionMark Wiebe2011-08-271-16/+8
* BUG: ufunc: Fix bug in multi-dimensional reduction without a unitMark Wiebe2011-08-2711-68/+383
* BUG: fix crash in test_datetime_as_stringHan2011-08-271-1/+1
* BLD: keep VC happy by moving inlined variable definitions to topHan2011-08-272-15/+27
* BLD: keep VC compiler happy by moving the threading macros after variable def...Han2011-08-272-6/+12
* BLD: missingdata: Fixes for Python 3Mark Wiebe2011-08-273-10/+14
* TST: datetime: Change pytz warning message about skipping pytz testsMark Wiebe2011-08-271-1/+1
* BLD: Failure in single file build mode because of a static function in two se...Mark Wiebe2011-08-274-4/+9
* BUG: nditer: The nditer was reusing the reduce loop inappropriately (#1938)Mark Wiebe2011-08-273-7/+29
* BUG: Some bugs in squeeze and concatenate found by testing SciPyMark Wiebe2011-08-274-5/+21
* TST: missingdata: Finish up NA mask tests for np.std and np.varMark Wiebe2011-08-271-0/+18
* BUG: nditer: NA masks in arrays with leading 1 dimensions had an issueMark Wiebe2011-08-276-9/+25
* ENH: missingdata: Implement tests for np.std, add skipna= and keepdims= param...Mark Wiebe2011-08-274-38/+136
* ENH: missingdata: Implement skipna= support for np.std and np.varMark Wiebe2011-08-275-28/+183
* ENH: missingdata: Support 'skipna=' parameter in np.meanMark Wiebe2011-08-278-50/+143
* ENH: missingdata: Create count_reduce_items functionMark Wiebe2011-08-278-12/+338
* ENH: missingdata: Move the Reduce boilerplate into a function PyArray_ReduceW...Mark Wiebe2011-08-273-211/+443
* ENH: missingdata: Finish count_nonzero as a full-fledged reduction operationMark Wiebe2011-08-278-46/+332