summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* 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
* ENH: missingdata: Towards making count_nonzero a full-featured reduction oper...Mark Wiebe2011-08-275-41/+248
* ENH: missingdata: Move some of the refactored reduction code into the APIMark Wiebe2011-08-2711-383/+556
* ENH: missingdata: Change default to create NA-mask when NAs are in listsMark Wiebe2011-08-274-12/+30
* ENH: missingdata: trying some more functions to see how they treat NAsMark Wiebe2011-08-271-0/+4
* ENH: missingdata: Add nastr= parameter to np.set_printoptions()Mark Wiebe2011-08-271-16/+24
* BUG: missingdata: Fix mask usage in PyArray_TakeFrom, add tests for itMark Wiebe2011-08-273-26/+30
* BUG: missingdata: The ndmin parameter to np.array wasn't respecting NA masksMark Wiebe2011-08-272-1/+31
* ENH: missingdata: Rewrite PyArray_Concatenate to work with NA masksMark Wiebe2011-08-2713-176/+511
* ENH: missingdata: Add NA support to np.diagonal, change np.diagonal to always...Mark Wiebe2011-08-276-124/+159
* ENH: ufunc: Move the default SAME_KIND casting rule out of the ufunc codeMark Wiebe2011-08-273-12/+19
* BUG: missingdata: Fix src_itemsize in USE_MASKNA copy to bufferMark Wiebe2011-08-277-22/+129
* ENH: missingdata: Move the new MultiIndex Get/Set Item functions into item_se...Mark Wiebe2011-08-273-168/+187
* ENH: missingdata: Make arr.item() and arr.itemset() work with NA masksMark Wiebe2011-08-275-193/+408
* DOC: missingdata: Add some NA mask info to the documentationMark Wiebe2011-08-271-0/+12
* BUG: missingdata: Fleshing things out, tracking down a memory corruptionMark Wiebe2011-08-274-21/+76
* ENH: umath: Fix reduce with NAs for ufuncs that have no unitMark Wiebe2011-08-2711-79/+70
* ENH: core: Add tests for copyto function with new array_assign_array featuresMark Wiebe2011-08-272-1/+75
* ENH: core: Make PyArray_CopyInto and PyArray_MoveInto be calls to array_assig...Mark Wiebe2011-08-273-868/+57
* ENH: core: Make the array assignment routine handle overlapping arraysMark Wiebe2011-08-276-122/+213
* ENH: missingdata: Implement routine for array to array assignmentMark Wiebe2011-08-2711-80/+843
* ENH: core: Make 1-byte low level loops use memsetMark Wiebe2011-08-271-10/+15
* ENH: core: Rewrite PyArray_FillWithScalar to use array_assign_scalarMark Wiebe2011-08-274-47/+116
* ENH: missingdata: Change FillWithZero/One to AssignZero/One, add parametersMark Wiebe2011-08-2710-159/+108
* ENH: missingdata: Fix remaining issues in scalar -> array assignment functionMark Wiebe2011-08-2715-180/+241
* ENH: missingdata: Finish implementation of scalar to array assignmentMark Wiebe2011-08-276-40/+552
* ENH: missingdata: Implement wheremasked scalar assignment with overwritena=TrueMark Wiebe2011-08-2718-405/+649
* ENH: missingdata: Use a static buffer in scalar assignment for small dtypesMark Wiebe2011-08-271-11/+20
* ENH: missingata: Move the alignment check out of the assignment functionsMark Wiebe2011-08-271-20/+28
* ENH: missingdata: Implement wheremask scalar assignmentMark Wiebe2011-08-273-2/+223
* ENH: missingdata: Writing some low level general array assignment routinesMark Wiebe2011-08-278-42/+383
* WIP: fixing reduce NA bugMark Wiebe2011-08-272-9/+57
* ENH: missingdata: Adding NA support to various methodsMark Wiebe2011-08-272-73/+134
* BUG: missingdata: Negative strides bug in USE_MASKNA nditer modeMark Wiebe2011-08-272-3/+2
* ENH: missingdata: Make NA ufuncs work with output parameters properlyMark Wiebe2011-08-272-7/+102
* BUG: missingdata: Was adding MASKNA even when not desired currentlyMark Wiebe2011-08-272-2/+2
* ENH: missingdata: Add skipna parameters to sum, prod, etcMark Wiebe2011-08-273-46/+92
* ENH: missingdata: Another NA array formatting tweakMark Wiebe2011-08-271-2/+9