summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* ENH: datetime: Masked arrays now use NaT as default filler value.Ben Walsh2011-07-191-2/+2
* BUG: datetime: Various fixes for datetime arrays.Ben Walsh2011-07-194-11/+42
* DOC: datetime: Update docstrings for busdays code.Steve R. Hastings2011-07-191-83/+92
* ENH: datetime: Allow whitespace in weekday mask.Steve R. Hastings2011-07-192-56/+87
* Regression test for missing dtype and order args in asarray_chkfiniteLars Buitinck2011-07-191-0/+6
* BUG: fix asarray_chkfinite to take dtype and order args, as advertisedLars Buitinck2011-07-191-4/+4
* ENH: Add some tests for polynomial printing.Charles Harris2011-07-161-0/+81
* BUG: Fix regression in printing polynomials.Charles Harris2011-07-161-6/+4
* DOC: fix build issues (with latex or newest sphinx)Pauli Virtanen2011-07-151-295/+297
* BUG: defer numpy.distutils import in ctypeslib.Ralf Gommers2011-07-151-1/+1
* TST: Added more tests for datetime array construction.Ben Walsh2011-07-121-0/+25
* BUT: Stop _array_find_type trying to make every list element a subtype of bool.Ben Walsh2011-07-122-17/+25
* DOC: core: Improve some documentation of internal functionsMark Wiebe2011-07-112-5/+8
* STY: Put some spaces around '&'.Charles Harris2011-07-112-2/+2
* ENH: core: Performance optimization in CopyInto, when both casting and broadc...Mark Wiebe2011-07-112-8/+45
* ENH: umath: Use masked iteration to allow buffered 'where=' output operandsMark Wiebe2011-07-112-3/+3
* ENH: nditer: Add tests for writemasked iteration, also some small fixesMark Wiebe2011-07-114-3/+122
* STY: Rename test_iterator.py to test_nditer.py for consistencyMark Wiebe2011-07-111-7/+7
* ENH: core: Add a typedef, macro, and inline functions for dealing with masksMark Wiebe2011-07-114-13/+49
* ENH: nditer: Finish implementation of masked iterationMark Wiebe2011-07-114-18/+343
* ENH: Fix some functions to use copyto instead of the deprecated putmask.Charles Harris2011-07-092-30/+30
* STY: Put some spaces in.Charles Harris2011-07-091-2/+2
* Merge branch 'pull-105'Charles Harris2011-07-0924-305/+1129
|\
| * STY: Put spaces around the '&' and '|' operators.Charles Harris2011-07-091-104/+104
| * STY: Fix 'copy' 'copyto' typo and remove some trailing whitespace.Charles Harris2011-07-092-2/+2
| * ENH: Use np.copyto instead of np.fill in some placesMark Wiebe2011-07-082-14/+2
| * ENH: core: Add np.copyto, PyArray_MaskedMoveInto, PyArray_MaskedCopyIntoMark Wiebe2011-07-088-5/+453
| * ENH: core: Add support for masked strided transfer functionsMark Wiebe2011-07-084-8/+271
| * STY: Some small stylistic changesMark Wiebe2011-07-082-2/+2
| * ENH: nditer: Add the basic checking and input of the MASK-related flagsMark Wiebe2011-07-085-46/+105
| * DEP: core: Move 'fortran' macro into the deprecated headerMark Wiebe2011-07-0810-61/+79
| * ENH: nditer: Add the per-operand masked iteration flagsMark Wiebe2011-07-085-7/+53
| * WRN: Get rid of some of the deprecation warnings about 'O4'Mark Wiebe2011-07-081-12/+12
| * DEP: core: Move NPY_AO into the deprecated API headerMark Wiebe2011-07-084-83/+85
* | BUG: Fixed bugs in join_by and added testsSkipper Seabold2011-07-082-6/+74
|/
* BUG: Fix onefile compilation of multiarraymodule_onefile. Thanks toCharles Harris2011-07-071-1/+3
* STY: Cleanup trailing whitespace.Charles Harris2011-07-075-10/+5
* ENH: nditer: Rename nditer.c.src to indicate it has just the templated bitsMark Wiebe2011-07-074-4/+4
* ENH: nditer: Move the non-templated API into its own fileMark Wiebe2011-07-076-2591/+2628
* ENH: nditer: Move construction/copy/destruction to its own implementation fileMark Wiebe2011-07-076-3249/+3294
* BUG: core: Missed a use of NPY_WRITEABLE in Py3 code when cleaning APIMark Wiebe2011-07-072-4/+4
* TST: ufunc: Disable where= buffering test temporarilyMark Wiebe2011-07-061-2/+7
* TST: umath: Add tests for casting output parametersMark Wiebe2011-07-061-0/+7
* ENH: core: Deprecate some bad namespace-polluting macrosMark Wiebe2011-07-061-0/+1
* TST: ma: Feedback from Derek about Python 3 failures in ma testsMark Wiebe2011-07-062-4/+4
* ENH: umath: Add tests, work out kinks in ufunc 'where=' parameterMark Wiebe2011-07-062-2/+29
* ENH: umath: Write the function to call the masked inner loopMark Wiebe2011-07-063-24/+213
* ENH: umath: Add parsing of a 'where=' parameter in the element-wise ufuncMark Wiebe2011-07-061-15/+66
* ENH: umath: Implement the default type resolution for masked loopsMark Wiebe2011-07-064-1/+132
* ENH: umath: Move the type resolution functions into their own fileMark Wiebe2011-07-0610-2256/+2294