Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #12713 from mattip/gh-12711 | Tyler Reddy | 2019-01-10 | 3 | -19/+25 |
|\ | | | | | BUG: loosen kwargs requirements in ediff1d | ||||
| * | BUG: loosen kwargs requirements in ediff1d | mattip | 2019-01-10 | 3 | -19/+25 |
| | | |||||
* | | Merge pull request #12545 from bashtage/choice-nan-protect | Charles Harris | 2019-01-10 | 2 | -1/+9 |
|\ \ | | | | | | | BUG: Ensure probabilities are not NaN in choice | ||||
| * | | BUG: Ensure probabilities are not NaN in choice | Kevin Sheppard | 2018-12-14 | 2 | -1/+9 |
| | | | | | | | | | | | | | | | | | | Add a check for NaN probabilities in random.choice closes #11250 | ||||
* | | | Merge pull request #12696 from seberg/bufferinfo_cache_dealloc_void | Matti Picus | 2019-01-10 | 4 | -0/+6 |
|\ \ \ | | | | | | | | | BUG: Fix leak of void scalar buffer info | ||||
| * | | | BUG: Followup fixes of leaks detected with valgrind | Sebastian Berg | 2019-01-09 | 2 | -0/+2 |
| | | | | | | | | | | | | | | | | See also gh-12624 | ||||
| * | | | BUG: Free buffer shape information on error during creation | Sebastian Berg | 2019-01-08 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | When the buffer was created and an error was found during the format string construction, the buffer was not freed correctly. | ||||
| * | | | BUG: Fix leak of void scalar buffer info | Sebastian Berg | 2019-01-08 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The vois scalar was missing the clearing logic for the buffer info cache (or storage). It should maybe be checked whether we can replace all of this logic when not supporting Python 2 anymore. | ||||
* | | | | Merge pull request #12702 from rth/fft-3d-fortran-test | Charles Harris | 2019-01-10 | 1 | -0/+38 |
|\ \ \ \ | | | | | | | | | | | TST: Check FFT results for C/Fortran ordered and non contigous input | ||||
| * | | | | Spelling | Roman Yurchak | 2019-01-09 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | TST Check FFT for C/Fortran ordered and non contigous arrays | Roman Yurchak | 2019-01-09 | 1 | -0/+38 |
| | | | | | |||||
* | | | | | Merge pull request #12709 from tylerjereddy/ppc64le_ci | Matti Picus | 2019-01-10 | 1 | -0/+5 |
|\ \ \ \ \ | |_|_|_|/ |/| | | | | TST: add ppc64le to Travis CI matrix | ||||
| * | | | | TST: add ppc64le to Travis CI matrix | Tyler Reddy | 2019-01-10 | 1 | -0/+5 |
| | | | | | |||||
* | | | | | Merge pull request #12668 from anntzer/concat-error-message | Matti Picus | 2019-01-10 | 2 | -8/+27 |
|\ \ \ \ \ | | | | | | | | | | | | | ENH: Improve error messages for non-matching shapes in concatenate. | ||||
| * | | | | | Improve error messages for non-matching shapes in concatenate. | Antony Lee | 2019-01-09 | 2 | -8/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... by including the indices and shapes of the arrays whose shape differ. | ||||
* | | | | | | Merge pull request #12620 from rgommers/c99-flags | Charles Harris | 2019-01-09 | 3 | -11/+11 |
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | BLD: move -std=c99 addition to CFLAGS to Azure config | ||||
| * | | | | | DOC: update build info in INSTALL.rst.txt | Ralf Gommers | 2019-01-06 | 1 | -8/+10 |
| | | | | | | |||||
| * | | | | | BLD: move -std=c99 from runtests.py to Azure config | Ralf Gommers | 2019-01-06 | 2 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | See gh-12610 for details. | ||||
* | | | | | | Merge pull request #12704 from tylerjereddy/azure_brew_temp_fix | Charles Harris | 2019-01-09 | 1 | -1/+1 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | TST: pin Azure brew version for stability | ||||
| * | | | | | | TST: pin Azure brew version for stability. | Tyler Reddy | 2019-01-09 | 1 | -1/+1 |
|/ / / / / / | |||||
* | | | | | | BUG: reference cycle in np.vectorize (#11977) | Matti Picus | 2019-01-09 | 4 | -12/+94 |
| |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This implements cyclic support by adding `tp_traverse` to ufuns which may contain a user provided object function (`np.frompyfunc`). Ufuncs that do not add this are not added to the circular reference count tracking. The ufunc does not need to implement `tp_clear` because it is an immutable object. | ||||
* | | | | | Merge pull request #12679 from mattip/remove-warnings | Sebastian Berg | 2019-01-09 | 5 | -141/+75 |
|\ \ \ \ \ | | | | | | | | | | | | | ENH: remove "Invalid value" warnings from median, percentile | ||||
| * | | | | | ENH: remove "Invalid value" warnings from median, percentile | mattip | 2019-01-06 | 5 | -141/+75 |
| | | | | | | |||||
* | | | | | | Merge pull request #12684 from mattip/benchmark-ufuncs | Sebastian Berg | 2019-01-09 | 3 | -4/+5 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | DEV: remove _arg from public API, add matmul to benchmark ufuncs | ||||
| * | | | | | | DEV: remove _arg from public API, add matmul to benchmark ufuncs | mattip | 2019-01-07 | 3 | -4/+5 |
| |/ / / / / | |||||
* | | | | | | Merge pull request #12698 from ahaldane/fix_copycast_isaligned_comments | Charles Harris | 2019-01-08 | 1 | -1/+10 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | DOC: improve comments in copycast_isaligned | ||||
| * | | | | | | DOC: improve comments in copycast_isaligned | Allan Haldane | 2019-01-08 | 1 | -1/+10 |
|/ / / / / / | |||||
* | | | | | | Merge pull request #12685 from mreineck/add_pocketfft | Matti Picus | 2019-01-08 | 2 | -5/+23 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | BUG: Make pocketfft handle long doubles. | ||||
| * | | | | | | tweak test | Martin Reinecke | 2019-01-08 | 1 | -5/+7 |
| | | | | | | | |||||
| * | | | | | | fix #12663 | Martin Reinecke | 2019-01-08 | 2 | -5/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tweak and add test better fix fix cleanup, additional test fix test | ||||
* | | | | | | | Merge pull request #12677 from ahaldane/fix_more_uint_aln | Charles Harris | 2019-01-08 | 5 | -21/+74 |
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | | MAINT: Further fixups to uint alignment checks | ||||
| * | | | | | | MAINT: Further fixups to uint alignment checks | Allan Haldane | 2019-01-06 | 5 | -21/+74 |
| | |_|_|/ / | |/| | | | | |||||
* | | | | | | Merge pull request #12687 from larsoner/links | Charles Harris | 2019-01-07 | 8 | -1/+15 |
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | ENH: Better links in documentation | ||||
| * | | | | | ENH: Better links in documentation | Eric Larson | 2019-01-07 | 8 | -1/+15 |
|/ / / / / | |||||
* | | | | | Merge pull request #12680 from eric-wieser/fix-PyArray_RegisterCanCast-malloc | Matti Picus | 2019-01-07 | 1 | -8/+25 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | BUG: Ensure failing memory allocations are reported | ||||
| * | | | | BUG: Ensure failing memory allocations are reported | Eric Wieser | 2019-01-06 | 1 | -8/+25 |
| | | | | | | | | | | | | | | | | | | | | Despite the strange tone, gh-12674 did identify a series of low-impact bugs in PyArray_RegisterCanCast | ||||
* | | | | | Merge pull request #12666 from tylerjereddy/bench_nanfuncs | Marten van Kerkwijk | 2019-01-06 | 1 | -0/+61 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | BENCH: add asv nanfunction benchmarks | ||||
| * | | | | BENCH: add asv nanfunction benchmarks | Tyler Reddy | 2019-01-05 | 1 | -0/+61 |
| | |/ / | |/| | | |||||
* | | | | Merge pull request #12672 from charris/fix-selected_real_kind-for-sparc | Charles Harris | 2019-01-05 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | BUG: Add 'sparc' to platforms implementing 16 byte reals. | ||||
| * | | | | BUG: Add 'sparc' to platforms implementing 16 byte reals. | Charles Harris | 2019-01-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This is for the _selected_real_kind_func function in f2py/crackfortran.py | ||||
* | | | | | Merge pull request #12671 from ahaldane/fix_us_to_s_tst | Charles Harris | 2019-01-05 | 1 | -3/+3 |
|\ \ \ \ \ | |_|/ / / |/| | | | | TST: Fix endianness in unstuctured_to_structured test | ||||
| * | | | | TST: Fix endianness in unstuctured_to_structured test | Allan Haldane | 2019-01-05 | 1 | -3/+3 |
|/ / / / | |||||
* | | | | Merge pull request #12239 from daten-kieker/polyval_2477 | Marten van Kerkwijk | 2019-01-04 | 2 | -2/+17 |
|\ \ \ \ | | | | | | | | | | | BUG: polyval returned non-masked arrays for masked input. | ||||
| * | | | | BUG: polyval returned Non-Masked Arrays for Masked Input. | Joachim Hereth | 2018-10-21 | 2 | -2/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fix will preserve subtypes of ndarray when given as input (x) to the polyval function. In particular, the results for masked values of a masked array will be masked. Fixes #2477. | ||||
* | | | | | Merge pull request #12644 from mhvk/ufunc-reduce-where-simple | Matti Picus | 2019-01-04 | 9 | -89/+250 |
|\ \ \ \ \ | |_|/ / / |/| | | | | ENH: where for ufunc reductions | ||||
| * | | | | ENH: allow where in reduce operations. | Marten van Kerkwijk | 2019-01-03 | 9 | -89/+250 |
|/ / / / | | | | | | | | | | | | | | | | | In this implementation, if the ufunc does not have an identity, it needs an initial vavlue to be supplied. | ||||
* | | | | Merge pull request #12626 from ahaldane/further_uint_align_fix | Charles Harris | 2019-01-03 | 10 | -55/+114 |
|\ \ \ \ | | | | | | | | | | | BUG: fix uint alignment asserts in lowlevel loops | ||||
| * | | | | BUG: fix uint alignment asserts in lowlevel loops | Allan Haldane | 2019-01-03 | 10 | -55/+114 |
| | | | | | |||||
* | | | | | BUG: Fix incorrect/missing reference cleanups found using valgrind (#12624) | Sebastian Berg | 2019-01-03 | 18 | -30/+83 |
| | | | | | | | | | | | | | | | squash-merged | ||||
* | | | | | Merge pull request #12634 from tylerjereddy/remove_agg_docs | Matti Picus | 2019-01-02 | 5 | -35/+2 |
|\ \ \ \ \ | | | | | | | | | | | | | DOC, TST: remove "agg" setting from docs |