summaryrefslogtreecommitdiff
path: root/numpy/core/src
AgeCommit message (Expand)AuthorFilesLines
2017-05-10MAINT: fix intp formatting warningsJulian Taylor1-23/+24
2017-05-10MAINT: Remove avoidable warningsEric Wieser3-5/+3
2017-05-10MAINT: use if instead of loopEric Wieser1-31/+21
2017-05-10BUG: Fix inconsistent lookup of __array_ufunc__.Eric Wieser4-42/+52
2017-05-10MAINT: Fix warnings about int vs intpEric Wieser1-9/+9
2017-05-10MAINT: Distinguish "correct" special method lookups from incorrect onesEric Wieser6-45/+99
2017-05-09BUG: Don't silence errors in bool(object_array)Eric Wieser1-0/+4
2017-05-09BUG: Prevent stackoverflow on self-containing arraysEric Wieser1-1/+7
2017-05-09Merge pull request #9026 from eric-wieser/ufunc_docstringsCharles Harris1-58/+19
2017-05-09ENH: Spelling fixesVille Skyttä11-12/+12
2017-05-08DOC: Show full argument lists for ufuncsEric Wieser1-58/+19
2017-05-08Merge pull request #9063 from shoyer/divmodEric Wieser4-31/+81
2017-05-07ENH: switch ndarray.__divmod__ to use np.divmodStephan Hoyer2-31/+9
2017-05-07ENH: add np.divmod ufuncStephan Hoyer2-0/+72
2017-05-07Merge pull request #9058 from charris/update-warning-messageCharles Harris1-2/+2
2017-05-07DEP: deprecate ndarray.conjugate's no-op fall through for non-numericJonathan L Long1-0/+8
2017-05-07Merge pull request #8421 from seberg/isnatCharles Harris4-0/+45
2017-05-07ENH: Add isnat functionSebastian Berg4-0/+45
2017-05-06Merge pull request #8964 from juliantaylor/empty-readJulian Taylor2-1/+14
2017-05-05BUG: ndarray.conjugate broken for custom dtypes (unlike np.conjugate)Jonathan L Long1-1/+2
2017-05-05MAINT: Update FutureWarning message.Charles Harris1-2/+2
2017-05-03MAINT: add deprecation warnings for NPY_CHAR usageJulian Taylor2-0/+23
2017-05-01Merge pull request #8876 from eric-wieser/ufunc-refactorEric Wieser1-116/+141
2017-05-01Merge pull request #8967 from shoyer/positiveEric Wieser3-0/+49
2017-04-30ENH: add np.positive ufunc and use it for ndarray.__pos__Stephan Hoyer3-0/+49
2017-04-30Merge pull request #9014 from shoyer/array_ufunc-NoneCharles Harris3-18/+43
2017-04-30ENH: disable ufuncs if any operand sets __array_ufunc__=NoneStephan Hoyer3-18/+43
2017-04-30Merge pull request #8885 from juliantaylor/tracemallocCharles Harris3-0/+27
2017-04-29Merge pull request #3861 from seberg/nditer-remove-emptyseberg3-43/+14
2017-04-29BUG: Make ndarray inplace operators forward calls when needed.Charles Harris2-49/+100
2017-04-29BUG: Fix matrix multiply test gufunc for empty matricesSebastian Berg1-0/+14
2017-04-29ENH: Allow removal of 0-sized axes from nditer and empty gufunc callsSebastian Berg2-43/+0
2017-04-28ENH: add support for python3.6 memory tracingJulian Taylor3-0/+27
2017-04-27Merge pull request #9002 from eric-wieser/where-true-defaultCharles Harris1-0/+9
2017-04-27ENH: Better error message for __array_ufunc__ not implementedStephan Hoyer1-3/+15
2017-04-27MAINT: remove unnecessary checks, wrong code for 'outer', cleanup.Marten van Kerkwijk3-54/+140
2017-04-27BUG: Add back removed elision code.Charles Harris1-6/+66
2017-04-27BUG: ensure subclass of override class doesn't segfault.Marten van Kerkwijk1-1/+2
2017-04-27MAINT: split out umath-specific part of ufunc_override.Marten van Kerkwijk6-480/+507
2017-04-27MAINT: simplify now that __array_ufunc__ overrides ufuncs only.Marten van Kerkwijk3-24/+14
2017-04-27REVERT: remove __array_ufunc__ override for np.matmul.Marten van Kerkwijk1-30/+12
2017-04-27REVERT: remove __array_ufunc__ override for np.dot and ndarray.dot.Marten van Kerkwijk2-64/+20
2017-04-27BUG,MAINT: ensure out=None is never passed on to __array_ufunc__.Marten van Kerkwijk5-133/+201
2017-04-27MAINT: let ndarray.__array_ufunc__ bail if any overrides are in place.Marten van Kerkwijk3-44/+82
2017-04-27ENH: implement ndarray.__array_ufunc__Marten van Kerkwijk2-9/+97
2017-04-27MAINT: for __array_ufunc__ pass inputs as *args, ensure out is tuple.Marten van Kerkwijk1-42/+99
2017-04-27MAINT: Add NPY_NO_EXPORT modifier to PyUFunc_CheckOverride.Charles Harris2-2/+2
2017-04-27MAINT: Split out C code in ufunc_override.h to .c file.Marten van Kerkwijk2-402/+410
2017-04-27MAINT: allow __array_ufunc__ = None to force binops to defer.Marten van Kerkwijk2-132/+42
2017-04-27BUG/ENH: Switch to simplified __array_ufunc__/binop interactionNathaniel J. Smith6-222/+346