summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #11286 from mattip/einsum-overlapCharles Harris2018-06-121-12/+16
|\
| * BUG: einsum needs to check overlap on an out argumentmattip2018-06-111-12/+16
* | MAINT: remove unused "npy_import"Allan Haldane2018-06-121-14/+0
|/
* MAINT: push back multifield copy->view changes to 1.16Allan Haldane2018-06-114-11/+73
* Merge pull request #11296 from eric-wieser/fix-array_wrap-segfaultMarten van Kerkwijk2018-06-101-2/+2
|\
| * BUG: Fix segfault on failing __array_wrap__Eric Wieser2018-06-101-2/+2
* | Merge pull request #11260 from mhvk/ufunc-parsing-better-cleanupCharles Harris2018-06-101-41/+32
|\ \
| * | MAINT: Do proper cleanup in get_ufunc_arguments.Marten van Kerkwijk2018-06-071-41/+32
* | | BUG: Remove extra trailing paretheses.Charles Harris2018-06-091-1/+1
* | | Merge pull request #11273 from seberg/sort-valgrind-fixCharles Harris2018-06-081-2/+12
|\ \ \
| * | | BUG: Remove invalid read in searchsorted if needle is emptySebastian Berg2018-06-071-2/+12
* | | | Merge pull request #11277 from eric-wieser/fix-older-ctypes-compatCharles Harris2018-06-081-15/+108
|\ \ \ \
| * | | | BUG: Work around bugs in pep3118 ctypes by falling back on np.dtype(type(ctyp...Eric Wieser2018-06-081-10/+86
| * | | | MAINT: Extract helper functionEric Wieser2018-06-081-13/+32
| * | | | MAINT: Don't steal a referenceEric Wieser2018-06-081-3/+1
| | |_|/ | |/| |
* | | | Merge pull request #11155 from eric-wieser/datetime-stack-overflowMarten van Kerkwijk2018-06-082-21/+16
|\ \ \ \ | |/ / / |/| | |
| * | | MAINT: Use moved definition of Npy_EnterRecursiveCallEric Wieser2018-05-241-11/+2
| * | | BUG: Prevent stackoverflow in conversion to datetime typesEric Wieser2018-05-241-10/+14
* | | | Merge pull request #11246 from eric-wieser/pyarray_new_with_baseEric Wieser2018-06-0719-431/+247
|\ \ \ \ | |_|_|/ |/| | |
| * | | BUG: Set ndarray.base before calling __array_finalize__Eric Wieser2018-06-0719-312/+143
| * | | MAINT/STY: Line wrap PyArray_NewFromDescr consistentlyEric Wieser2018-06-0516-165/+150
* | | | Merge pull request #11018 from mhvk/gufunc-axis-and-keepdimsCharles Harris2018-06-073-18/+184
|\ \ \ \
| * | | | TST: Add a new gufunc with (i)->(i) signature for testing with axis.Marten van Kerkwijk2018-06-071-0/+46
| * | | | MAINT: Interpret gufunc axis directly rather than construct axes.Marten van Kerkwijk2018-06-071-56/+63
| * | | | MAINT: let ufunc override reject passing in both axis and axes.Marten van Kerkwijk2018-06-071-2/+10
| * | | | ENH: add "axis" argument to generalized ufuncs.Marten van Kerkwijk2018-06-071-11/+116
| | |_|/ | |/| |
* | | | Merge pull request #10444 from ahaldane/dragon4_otherformats_splitCharles Harris2018-06-074-6/+265
|\ \ \ \
| * | | | BUG: Implement float128 dragon4 for IBM double-double (ppc64)Allan Haldane2018-06-064-6/+265
| |/ / /
* | | | BUG: Correct use of NPY_UNUSED.Charles Harris2018-06-071-1/+1
|/ / /
* | | Merge pull request #11257 from mhvk/ufunc-parsing-no-borrowed-refsMarten van Kerkwijk2018-06-061-13/+23
|\ \ \ | |/ / |/| |
| * | BUG: ensure extobj and axes have their own references.Marten van Kerkwijk2018-06-061-13/+23
* | | Merge pull request #11167 from ahaldane/dragon4_float128_part1Charles Harris2018-06-053-541/+839
|\ \ \
| * | | MAINT: Add comment in dragon4 code.Charles Harris2018-06-051-0/+1
| * | | MAINT: replace static BigInts in dragon4 by dummy managerAllan Haldane2018-06-041-127/+196
| * | | MAINT: Reorganize Dragon4 code to clarify float formatsAllan Haldane2018-06-043-466/+694
| |/ /
* | | Merge pull request #11249 from eric-wieser/0d-complex-contiguousCharles Harris2018-06-051-1/+0
|\ \ \
| * | | BUG: Remove errant flag meddling in .real and .imagEric Wieser2018-06-051-1/+0
* | | | Merge pull request #11247 from eric-wieser/simplify-incref-handlingMatti Picus2018-06-051-8/+4
|\ \ \ \
| * | | | BUG: Prevent memory leak if PyArray_NewCopy failsEric Wieser2018-06-051-1/+1
| * | | | MAINT: Remove out-of-band reference count in PyArray_NewshapeEric Wieser2018-06-041-8/+4
| |/ / /
* | | | MAINT: Don't update the flags a second timeEric Wieser2018-06-045-30/+0
|/ / /
* | | Merge pull request #11239 from eric-wieser/expose-global-descrsCharles Harris2018-06-046-53/+59
|\ \ \
| * | | MAINT: Use PyArray_NewFromDescr in place of PyArray_New for known numeric typesEric Wieser2018-06-035-49/+59
| * | | MAINT: Remove unused definitionsEric Wieser2018-06-031-4/+0
* | | | Merge pull request #11238 from eric-wieser/deduplicate-update-flagsCharles Harris2018-06-045-14/+0
|\ \ \ \ | |_|/ / |/| | |
| * | | MAINT: Don't update the flags a second timeEric Wieser2018-06-035-14/+0
| |/ /
* | | BUG: Prevent underflow causing empty result in arange (#10263)Licht Takeuchi2018-06-031-7/+61
|/ /
* | Merge pull request #11231 from mhvk/ufunc-get-arg-tuple-short-circuitEric Wieser2018-06-021-0/+4
|\ \
| * | MAINT: ensure we do not create unnecessary tuples for outputsMarten van Kerkwijk2018-06-021-0/+4
* | | Merge pull request #11191 from ahaldane/remove_darwin_float128Charles Harris2018-06-023-34/+3
|\ \ \