summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray
Commit message (Expand)AuthorAgeFilesLines
* ENH: release GIL in CountNonzero trivial loopAllan Haldane2017-09-241-6/+18
* MAINT: Simplify array_contains using PyArray_AnyAllan Haldane2017-09-241-76/+5
* MAINT: array_any_nonzero now uses new iterator APIAllan Haldane2017-09-242-21/+59
* BUG: PyArray_CountNonzero does not check for exceptionsAllan Haldane2017-09-242-2/+20
* Merge pull request #9746 from charris/backport-9624Charles Harris2017-09-221-1/+2
|\
| * BUG: memory leak in np.dot of size 0Michael Lamparski2017-09-221-1/+2
* | BUG: Check for exception in sort functions, add testsmattip2017-09-222-7/+15
|/
* MAINT: Use PyArray_CHKFLAGS in more places.Charles Harris2017-09-221-2/+2
* BUG: Make scalar function elision check writeable.Charles Harris2017-09-211-0/+2
* Merge pull request #9317 from juliantaylor/nonzero-fixCharles Harris2017-06-271-1/+1
|\
| * BUG: fix wrong ndim used in empty where checkJulian Taylor2017-06-271-1/+1
* | BUG: handle resize to 0d arrayJulian Taylor2017-06-171-18/+25
* | Merge pull request #9261 from juliantaylor/readonly-tempCharles Harris2017-06-171-0/+2
|\ \ | |/
| * BUG: don't elide into readonly and updateifcopy temporariesJulian Taylor2017-06-171-0/+2
* | BUG: ensure structured ndarray.__eq__,__ne__ defer when appropriate.Marten van Kerkwijk2017-05-241-2/+2
* | BUG: errors in fast_scalar_power are not propagated.Marten van Kerkwijk2017-05-172-33/+29
* | MAINT: use PyArray_ISNUMBER to decide whether to elideJulian Taylor2017-05-151-2/+2
|/
* BUG: only elide basic dtypes in unary opsJulian Taylor2017-05-121-1/+1
* BUG: do not elide complex abs()Julian Taylor2017-05-121-1/+1
* BUG: Fix inconsistent lookup of __array_ufunc__.Eric Wieser2017-05-101-1/+1
* MAINT: Distinguish "correct" special method lookups from incorrect onesEric Wieser2017-05-103-9/+9
* BUG: Don't silence errors in bool(object_array)Eric Wieser2017-05-091-0/+4
* BUG: Prevent stackoverflow on self-containing arraysEric Wieser2017-05-091-1/+7
* ENH: Spelling fixesVille Skyttä2017-05-099-9/+9
* Merge pull request #9063 from shoyer/divmodEric Wieser2017-05-082-31/+9
|\
| * ENH: switch ndarray.__divmod__ to use np.divmodStephan Hoyer2017-05-072-31/+9
* | Merge pull request #9058 from charris/update-warning-messageCharles Harris2017-05-071-2/+2
|\ \
| * | MAINT: Update FutureWarning message.Charles Harris2017-05-051-2/+2
| |/
* | DEP: deprecate ndarray.conjugate's no-op fall through for non-numericJonathan L Long2017-05-071-0/+8
* | Merge pull request #8964 from juliantaylor/empty-readJulian Taylor2017-05-062-1/+14
|\ \
| * | BUG: do not try to read data from empty src-stride 0 arraysJulian Taylor2017-04-201-0/+3
| * | BUG: don't create array with invalid memory in whereJulian Taylor2017-04-201-1/+11
* | | BUG: ndarray.conjugate broken for custom dtypes (unlike np.conjugate)Jonathan L Long2017-05-051-1/+2
| |/ |/|
* | MAINT: add deprecation warnings for NPY_CHAR usageJulian Taylor2017-05-032-0/+23
* | Merge pull request #9014 from shoyer/array_ufunc-NoneCharles Harris2017-04-301-2/+7
|\ \
| * | ENH: disable ufuncs if any operand sets __array_ufunc__=NoneStephan Hoyer2017-04-301-2/+7
* | | Merge pull request #8885 from juliantaylor/tracemallocCharles Harris2017-04-303-0/+27
|\ \ \
| * | | ENH: add support for python3.6 memory tracingJulian Taylor2017-04-283-0/+27
| |/ /
* | | Merge pull request #3861 from seberg/nditer-remove-emptyseberg2017-04-291-6/+0
|\ \ \
| * | | ENH: Allow removal of 0-sized axes from nditer and empty gufunc callsSebastian Berg2017-04-291-6/+0
| |/ /
* | | BUG: Make ndarray inplace operators forward calls when needed.Charles Harris2017-04-291-38/+72
|/ /
* | MAINT: remove unnecessary checks, wrong code for 'outer', cleanup.Marten van Kerkwijk2017-04-271-8/+0
* | BUG: Add back removed elision code.Charles Harris2017-04-271-6/+66
* | MAINT: split out umath-specific part of ufunc_override.Marten van Kerkwijk2017-04-271-1/+1
* | REVERT: remove __array_ufunc__ override for np.matmul.Marten van Kerkwijk2017-04-271-30/+12
* | REVERT: remove __array_ufunc__ override for np.dot and ndarray.dot.Marten van Kerkwijk2017-04-272-64/+20
* | BUG,MAINT: ensure out=None is never passed on to __array_ufunc__.Marten van Kerkwijk2017-04-272-3/+3
* | MAINT: let ndarray.__array_ufunc__ bail if any overrides are in place.Marten van Kerkwijk2017-04-271-12/+23
* | ENH: implement ndarray.__array_ufunc__Marten van Kerkwijk2017-04-271-0/+42
* | BUG/ENH: Switch to simplified __array_ufunc__/binop interactionNathaniel J. Smith2017-04-274-222/+41