summaryrefslogtreecommitdiff
path: root/numpy/core/src/umath
Commit message (Expand)AuthorAgeFilesLines
* BUG: ticket #1776, make complex division by zero to yield inf properly.Pauli Virtanen2012-04-261-5/+14
* BUG: Fix maximum/minimum for object arrays in Python 3.Charles Harris2012-04-261-0/+30
* BUG: Cleanup in PyUFunc_FromFuncAndDataAndSignature error case.Michael Droettboom2011-05-021-0/+1
* BUG: Fix a bug where memory was being read after being freed.Michael Droettboom2011-05-021-1/+3
* BUG: Fix memory leak in UMath_Tests_test_signature testMichael Droettboom2011-05-021-0/+1
* WRN: Fix gcc warnings (4.6.0 with "-Wall -Wno-unused-function")Mark Wiebe2011-04-231-9/+0
* STY: Add comment about errobj reference ownershipMark Wiebe2011-04-221-1/+5
* BUG: Fix memory leak in reduction ufuncs -- the error object was not being de...Michael Droettboom2011-04-221-0/+6
* BUG: Fix type promotion regression for ufuncs (Ticket #1798)Mark Wiebe2011-04-221-27/+82
* API: Rename 'niter' to 'nop' in the nditerMark Wiebe2011-03-171-46/+46
* ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, np.zeros_l...Mark Wiebe2011-03-151-24/+58
* API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-141-6/+6
* STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOPMark Wiebe2011-03-141-3/+3
* API: Simplify basic iterator constructors, add 'itershape' to advanced iterat...Mark Wiebe2011-03-131-10/+10
* API: Rename the iterator function pointer types to be more consistent with Nu...Mark Wiebe2011-03-101-6/+6
* STY: Work around lack of variadic macros in debug tracingMark Wiebe2011-03-101-57/+63
* API: Change iterator API parameters ndim and niter from npy_intp to intMark Wiebe2011-03-101-14/+14
* BUG: fix compilation with MSVC 2008. Thanks to Christoph Gohlke.rgommers2011-03-091-6/+12
* ENH: Speed up reduce for maximum/minimum type ufuncs.Charles Harris2011-03-071-12/+48
* BUG: core: Fix potential reference leak, possibly fix segfault ticket #1737Mark Wiebe2011-02-091-4/+7
* BUG: umath: Fix reference usage after Py_DECREFMark Wiebe2011-02-081-1/+1
* WHT: Cleanup whitespace.Charles Harris2011-02-035-14/+11
* BUG: ufunc: Fix regression of accumulate with zero-size result (ticket #1733)Mark Wiebe2011-02-021-23/+33
* BUG: core: make Numpy build again on Python 3 and 2.4Pauli Virtanen2011-02-021-14/+42
* ENH: iter: Allow copies of read-only scalar arrays even if COPY isn't specifiedMark Wiebe2011-01-301-1/+4
* ENH: core: Add dtype= and order= parameters to zeros_like, ones_like, and emp...Mark Wiebe2011-01-281-1/+29
* ENH: ufunc: Add new iterator version of generalized ufuncsMark Wiebe2011-01-271-150/+414
* ENH: ufunc: Move reduceat to its own function, have it use the iteratorMark Wiebe2011-01-271-218/+381
* BUG: core: Fix things so scipy trunk passes all tests (but one)Mark Wiebe2011-01-271-20/+21
* BUG: ufunc: Fix buffered reduceMark Wiebe2011-01-271-52/+55
* ENH: core: Shuffle type numbers so any new ones go on the end.Mark Wiebe2011-01-251-3/+9
* ENH: ufunc: Remove dead code from ufunc_object.cMark Wiebe2011-01-251-2036/+20
* ENH: ufunc: Convert Reduceat to use the new iteratorMark Wiebe2011-01-251-230/+229
* ENH: ufunc: Convert Accumulate to use the new iteratorMark Wiebe2011-01-251-243/+209
* ENH: iter: Add NpyIter_RemoveAxis function to the iterator APIMark Wiebe2011-01-251-21/+47
* ENH: ufunc: Release the GIL during ufunc computationsMark Wiebe2011-01-251-0/+85
* ENH: ufunc: Convert UFunc Reduce to use the new iteratorMark Wiebe2011-01-251-139/+465
* ENH: core: Make the debug printf tracing macros more systematicMark Wiebe2011-01-221-37/+41
* ENH: ufunc: Add support for the sig= type_tuple parameter to new ufunc codeMark Wiebe2011-01-211-23/+344
* ENH: ufunc: Implement user loop searchingMark Wiebe2011-01-211-138/+298
* ENH: ufunc: Get all tests passing with new iterator ufunc except generalized ...Mark Wiebe2011-01-211-3/+12
* ENH: ufunc: Change object/reference handling code to treat NULL as Py_None mo...Mark Wiebe2011-01-211-8/+8
* BUG: iter: Fix 0-size edge case with trivial iteration macrosMark Wiebe2011-01-211-2/+16
* ENH: ufunc: Make many more tests pass with the new ufunc codeMark Wiebe2011-01-212-57/+131
* ENH: ufunc: Made the iterator ufunc defaultMark Wiebe2011-01-201-6/+47
* ENH: ufunc: Add support for the __array_prepare__ property of subclassed arraysMark Wiebe2011-01-201-66/+279
* ENH: ufunc: Restructure iterator ufunc evaluation into functionsMark Wiebe2011-01-201-508/+789
* ENH: ufunc: Simple iterator-based ufunc execution is workingMark Wiebe2011-01-201-38/+171
* ENH: ufunc: Implement the trivial two and three-operand loopsMark Wiebe2011-01-191-9/+58
* ENH: ufunc: Add trivial loop detection macros for triple loopsMark Wiebe2011-01-191-7/+64