summaryrefslogtreecommitdiff
path: root/numpy/core/src/private
Commit message (Expand)AuthorAgeFilesLines
* MAINT: move private -> commonmattip2018-08-2119-4178/+0
* MAINT,DEP: Properly implement ndarray.__pos__Marten van Kerkwijk2018-07-262-2/+30
* Merge pull request #11016 from stuartarchibald/wip/armv7_aarch32Matti Picus2018-07-041-1/+2
|\
| * ENH: Add AARCH32 support.Stuart Archibald2018-06-261-1/+2
* | BUG: Advanced indexing assignment incorrectly took 1-D fastpathSebastian Berg2018-07-021-19/+20
* | MAINT: Split off getting overrides and checking for them.Marten van Kerkwijk2018-06-282-70/+135
* | MAINT: Ensure __array_ufunc__ on given class is only called once.Marten van Kerkwijk2018-06-281-7/+23
|/
* BUG: decref in failure path; replace PyObject_Type by Py_TYPEMarten van Kerkwijk2018-06-141-1/+9
* MAINT: remove unused "npy_import"Allan Haldane2018-06-121-14/+0
* MAINT: push back multifield copy->view changes to 1.16Allan Haldane2018-06-111-0/+14
* BUG: Implement float128 dragon4 for IBM double-double (ppc64)Allan Haldane2018-06-061-2/+10
* MAINT: remove darwin hardcoded LDOUBLE detectionAllan Haldane2018-05-301-29/+0
* Merge pull request #10650 from eric-wieser/longdouble_intCharles Harris2018-02-242-2/+2
|\
| * BUG: Fix missing NPY_VISIBILITY_HIDDEN on npy_longdouble_to_PyLongEric Wieser2018-02-222-2/+2
* | MAINT: Fix sign-compare warnings in npy_binsearch, npy_partition.Charles Harris2018-01-202-15/+26
* | MAINT: Fix sign-compare warnings in mem_overlap.c.Charles Harris2017-12-291-10/+12
* | MAINT: Fix loop and simd sign-compare warnings.Charles Harris2017-12-251-13/+22
* | MAINT: Fix test_int_from_huge_longdouble on Darwin.Charles Harris2017-11-101-3/+6
|/
* BUG: Fix casting from longdouble to longEric Wieser2017-11-072-0/+116
* MAINT: fix std header include orderJulian Taylor2017-09-011-3/+4
* BUG: core: blacklist MSVC cabs* on win32Pauli Virtanen2017-08-171-0/+4
* BUG: blacklist MSVC hypot() on win32Pauli Virtanen2017-08-161-0/+9
* BUG remove memory leak in array ufunc override.Marten van Kerkwijk2017-05-101-3/+4
* MAINT: Remove avoidable warningsEric Wieser2017-05-102-4/+3
* MAINT: use if instead of loopEric Wieser2017-05-101-31/+21
* BUG: Fix inconsistent lookup of __array_ufunc__.Eric Wieser2017-05-102-27/+30
* MAINT: Distinguish "correct" special method lookups from incorrect onesEric Wieser2017-05-103-36/+90
* ENH: Spelling fixesVille Skyttä2017-05-091-2/+2
* Merge pull request #9014 from shoyer/array_ufunc-NoneCharles Harris2017-04-301-5/+28
|\
| * ENH: disable ufuncs if any operand sets __array_ufunc__=NoneStephan Hoyer2017-04-301-5/+28
* | BUG: Make ndarray inplace operators forward calls when needed.Charles Harris2017-04-291-11/+28
|/
* MAINT: split out umath-specific part of ufunc_override.Marten van Kerkwijk2017-04-272-478/+16
* MAINT: simplify now that __array_ufunc__ overrides ufuncs only.Marten van Kerkwijk2017-04-272-12/+8
* BUG,MAINT: ensure out=None is never passed on to __array_ufunc__.Marten van Kerkwijk2017-04-272-119/+182
* MAINT: let ndarray.__array_ufunc__ bail if any overrides are in place.Marten van Kerkwijk2017-04-272-32/+59
* ENH: implement ndarray.__array_ufunc__Marten van Kerkwijk2017-04-271-9/+55
* MAINT: for __array_ufunc__ pass inputs as *args, ensure out is tuple.Marten van Kerkwijk2017-04-271-42/+99
* MAINT: Add NPY_NO_EXPORT modifier to PyUFunc_CheckOverride.Charles Harris2017-04-272-2/+2
* MAINT: Split out C code in ufunc_override.h to .c file.Marten van Kerkwijk2017-04-272-402/+410
* MAINT: allow __array_ufunc__ = None to force binops to defer.Marten van Kerkwijk2017-04-272-132/+42
* BUG/ENH: Switch to simplified __array_ufunc__/binop interactionNathaniel J. Smith2017-04-271-0/+292
* MAINT: Put PyArray_GetAttrString_SuppressException in get_attr_string.hNathaniel J. Smith2017-04-272-15/+97
* ENH: Remove position arg from __array_ufunc__.Charles Harris2017-04-271-8/+1
* ENH: Rename __numpy_ufunc__ to __array_ufunc__.Charles Harris2017-04-271-7/+7
* ENH: Revert "Temporarily disable __numpy_ufunc__"Charles Harris2017-04-271-6/+0
* STY: core: fix up code style and add clearer commentsPauli Virtanen2017-02-101-8/+12
* BUG: core: fix bug with zero strides in PyArray_EQUIVALENTLY_ITERABLE_OVERLAP_OKPauli Virtanen2017-01-201-4/+7
* MAINT: core: fix compiler warningsPauli Virtanen2017-01-201-1/+1
* MAINT: drop NPY_INLINEPauli Virtanen2017-01-191-1/+1
* ENH: core: add overlap detection logic to EQUIVALENTLY/TRIVIALLY_ITERABLE loopsPauli Virtanen2017-01-191-26/+92