summaryrefslogtreecommitdiff
path: root/numpy/core
Commit message (Expand)AuthorAgeFilesLines
* DOC: correct kind for numericaltype code docCenny Wenner2018-06-091-2/+2
* Merge pull request #11273 from seberg/sort-valgrind-fixCharles Harris2018-06-082-2/+26
|\
| * MAINT: Extract common variableEric Wieser2018-06-081-6/+6
| * BUG: Remove invalid read in searchsorted if needle is emptySebastian Berg2018-06-072-4/+28
* | Merge pull request #11277 from eric-wieser/fix-older-ctypes-compatCharles Harris2018-06-083-15/+144
|\ \
| * | BUG: Work around bugs in pep3118 ctypes by falling back on np.dtype(type(ctyp...Eric Wieser2018-06-083-10/+122
| * | 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-084-21/+41
|\ \ \ | |/ / |/| |
| * | MAINT: Use moved definition of Npy_EnterRecursiveCallEric Wieser2018-05-241-11/+2
| * | BUG: Prevent stackoverflow in conversion to datetime typesEric Wieser2018-05-243-10/+39
* | | Merge pull request #11246 from eric-wieser/pyarray_new_with_baseEric Wieser2018-06-0720-431/+298
|\ \ \
| * | | BUG: Set ndarray.base before calling __array_finalize__Eric Wieser2018-06-0720-312/+194
| * | | MAINT/STY: Line wrap PyArray_NewFromDescr consistentlyEric Wieser2018-06-0516-165/+150
* | | | Merge pull request #11275 from seberg/tst-no-empty-sortCharles Harris2018-06-071-4/+6
|\ \ \ \
| * | | | TST: Do not use empty arrays in tests (unless they are not read)Sebastian Berg2018-06-081-4/+6
| | |_|/ | |/| |
* | | | Merge pull request #11018 from mhvk/gufunc-axis-and-keepdimsCharles Harris2018-06-075-20/+246
|\ \ \ \
| * | | | TST: Add a new gufunc with (i)->(i) signature for testing with axis.Marten van Kerkwijk2018-06-072-1/+64
| * | | | 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-072-2/+11
| * | | | ENH: add "axis" argument to generalized ufuncs.Marten van Kerkwijk2018-06-072-13/+160
| |/ / /
* | | | Merge pull request #10444 from ahaldane/dragon4_otherformats_splitCharles Harris2018-06-076-14/+335
|\ \ \ \
| * | | | BUG: Implement float128 dragon4 for IBM double-double (ppc64)Allan Haldane2018-06-066-14/+335
| |/ / /
* | | | 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-062-13/+33
|\ \ \ | |/ / |/| |
| * | BUG: ensure extobj and axes have their own references.Marten van Kerkwijk2018-06-062-13/+33
* | | 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-052-1/+16
|\ \ \
| * | | BUG: Remove errant flag meddling in .real and .imagEric Wieser2018-06-052-1/+16
* | | | 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-032-7/+97
|/ /
* | Merge pull request #11223 from pgunn/memmap_promote_shape_uint64Charles Harris2018-06-031-2/+1
|\ \
| * | reviewPat Gunn2018-06-031-1/+1
| * | Revise further as per peer reviewPat Gunn2018-06-031-2/+1
| * | Revise further as per peer reviewPat Gunn2018-06-031-2/+1
| * | Responding to peer review, change to intpPat Gunn2018-06-031-2/+2
| * | In numpy.memmap forcibly promote shape to uint64Pat Gunn2018-06-011-1/+2
* | | 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