summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* DOC, TST: test setdiff1d assume_uniqueTyler Reddy2018-10-162-2/+11
| | | | | | | | * add unit test for setdiff1d covering code path where assume_unique is True * remove setdiff1d docstring guarantee that returned value is sorted -- it is not
* Merge pull request #12181 from raggleton/fix-sum-deprStephan Hoyer2018-10-161-1/+1
|\ | | | | MAINT: fix depreciation message typo for np.sum
| * MAINT: fix depreciation message typo for np.sumRobin Aggleton2018-10-161-1/+1
|/
* Merge pull request #12173 from shoyer/nep-18-update-notesMatti Picus2018-10-161-0/+6
|\ | | | | NEP: add notes about updates to NEP-18
| * MAINT: minor adjustment to nep-18Stephan Hoyer2018-10-151-2/+3
| |
| * NEP: add notes about updates to NEP-18Stephan Hoyer2018-10-141-1/+6
| | | | | | | | As discussion in GH12140
* | Merge pull request #12155 from eric-wieser/setrefMatti Picus2018-10-162-20/+18
|\ \ | | | | | | MAINT: Move NPY_SETREF to somewhere more reusable
| * | MAINT: Move NPY_SETREF alongside the other backportsEric Wieser2018-10-142-20/+18
| | |
* | | Merge pull request #12151 from tylerjereddy/test_byte_bounds_contiguityMatti Picus2018-10-161-4/+28
|\ \ \ | | | | | | | | TST: byte_bounds contiguity handling
| * | | TST: test byte_bounds contiguity handlingTyler Reddy2018-10-151-4/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * add unit tests to probe previously-uncovered code paths in byte_bounds() that handle both positive and negative strides in non-contiguous arrays (or, at least, arrays with unusual ordering)
* | | | Merge pull request #12166 from mattip/nep-16Eric Wieser2018-10-151-0/+251
|\ \ \ \ | |/ / / |/| | | NEP: Add zero-rank arrays historical info NEP
| * | | NEP: change changeset to commit for gitmattip2018-10-151-3/+3
| | | |
| * | | NEP: fixes from reviewmattip2018-10-151-4/+17
| | | |
| * | | NEP: Add zero-rank arrays historical info NEPmattip2018-10-141-0/+238
| | | |
* | | | MAINT: Update ndarrayobject.h `__cplusplus` block. (#12145)lerbuke2018-10-151-7/+1
| | | |
* | | | Merge pull request #12165 from shoyer/nep-22-acceptMatti Picus2018-10-152-3/+10
|\ \ \ \ | | | | | | | | | | Mark NEP 22 as accepted, and add "Informational" NEPs to NEP 1
| * | | | NEP: mention "Informational" NEPs in NEP 0Stephan Hoyer2018-10-131-2/+8
| | | | | | | | | | | | | | | | | | | | The text is lightly adapted from PEP 1.
| * | | | NEP: mark NEP-22 as acceptedStephan Hoyer2018-10-131-1/+2
| | |_|/ | |/| |
* | | | Merge pull request #12174 from shoyer/nep-16-abstract-arrayStephan Hoyer2018-10-143-0/+386
|\ \ \ \ | | | | | | | | | | NEP 16 abstract arrays: rebased and marked as "Withdrawn"
| * | | | MAINT: fix build for NEP 16Stephan Hoyer2018-10-142-4/+15
| | | | |
| * | | | NEP: mark NEP-16 as withdrawn in favor of a protocolStephan Hoyer2018-10-141-2/+7
| | | | |
| * | | | Add link to first mailing list postNathaniel J. Smith2018-10-141-1/+1
| | | | |
| * | | | New NEP for identifying and coercing duck arraysNathaniel J. Smith2018-10-142-0/+370
| | |/ / | |/| |
* | | | Merge pull request #12176 from tylerjereddy/ravel_weights_test_errEric Wieser2018-10-141-0/+7
|\ \ \ \ | |/ / / |/| | | TST: add test for weighted histogram mismatch
| * | | TST: add test for weighted histogram mismatchTyler Reddy2018-10-141-0/+7
|/ / / | | | | | | | | | | | | | | | * add a unit test for an uncovered code path where a histogram array does not match the shape of the provided array of weights
* | | Merge pull request #12148 from shoyer/nep18-release-notesMatti Picus2018-10-141-0/+10
|\ \ \ | |/ / |/| | DOC: document NEP-18 overrides in release notes
| * | DOC: document NEP-18 overrides in release notesStephan Hoyer2018-10-111-0/+10
| | |
* | | ENH: __array_function__ support for np.fft and np.linalg (#12117)Stephan Hoyer2018-10-123-1/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ENH: __array_function__ support for np.fft and np.linalg xref GH12028 * CLN: remove unnecessary dispatcher functions from np.linalg * CLN: remove more unneeded dispatchers * CLN: remove repeated dispatchers from np.linalg
* | | Merge pull request #11613 from moshelooks/patch-2Matti Picus2018-10-121-4/+4
|\ \ \ | | | | | | | | BUG: have geometric() raise ValueError on p=0
| * | | BUG: have geometric() raise ValueError on p=0Moshe Looks2018-07-241-4/+4
| | | | | | | | | | | | Currently `np.random.geometric(0) => -9223372036854775808`
* | | | Merge pull request #11771 from asnasnasn/shuf-mmMatti Picus2018-10-122-3/+6
|\ \ \ \ | | | | | | | | | | BUG: Make `random.shuffle` work on 1-D instances of `ndarray` subclasses
| * | | | BUG: Make `random.shuffle` work on 1-D instances of `ndarray` subclassesWenjamin Petrenko2018-08-182-3/+6
| | | | | | | | | | | | | | | | | | | | Closes #11442.
* | | | | Merge pull request #12140 from ↵Charles Harris2018-10-111-28/+25
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | shoyer/nep-18-array_function_implementation_or_override DOC: fixups for NEP-18 based on the implementation
| * | | | | DOC: fixups for NEP-18 based on the implementationStephan Hoyer2018-10-101-28/+25
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | The main change is replacing `try_array_function_override` with `array_function_implementation_or_override` (our current implementation). I also fixed a few typos.
* | | | | Merge pull request #12116 from shoyer/array-function-numpy-libCharles Harris2018-10-117-0/+379
|\ \ \ \ \ | | | | | | | | | | | | ENH: __array_function__ support for np.lib, part 1/2
| * | | | | ENH: __array_function__ for np.lib, part 1Stephan Hoyer2018-10-087-0/+379
| | | | | | | | | | | | | | | | | | | | | | | | np.lib.arraypad through np.lib.nanfunctions
* | | | | | Merge pull request #12115 from shoyer/array-function-numpy-coreCharles Harris2018-10-114-12/+375
|\ \ \ \ \ \ | | | | | | | | | | | | | | ENH: __array_function__ support for most of numpy.core
| * | | | | | ENH: __array_function__ support for most of numpy.coreStephan Hoyer2018-10-084-12/+375
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the notable exceptions of np.einsum and np.block. xref GH12028
* | | | | | Merge pull request #12147 from eric-wieser/unify-type-resolution-errorsCharles Harris2018-10-111-78/+33
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | | MAINT: Move duplicated type_reso_error code into a helper function
| * | | | | MAINT: Move duplicated type_reso_error code into a helper functionEric Wieser2018-10-111-78/+33
| | | | | |
* | | | | | Merge pull request #12146 from eric-wieser/not-depreciationTyler Reddy2018-10-111-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | MAINT: Fix typo in comment
| * | | | | MAINT: Fix typo in commentEric Wieser2018-10-111-1/+1
|/ / / / /
* | | | | Merge pull request #12137 from tylerjereddy/fill_diag_err_testEric Wieser2018-10-111-0/+13
|\ \ \ \ \ | | | | | | | | | | | | TST: error tests for fill_diagonal()
| * | | | | TST: error tests for fill_diagonal()Tyler Reddy2018-10-101-0/+13
| | |/ / / | |/| | | | | | | | | | | | | | | | | | * add error handling tests for previously uncovered code in fill_diagonal()
* | | | | Merge pull request #12138 from tylerjereddy/diag_indices_from_err_testEric Wieser2018-10-111-5/+17
|\ \ \ \ \ | | | | | | | | | | | | TST: error tests for diag_indices_from()
| * | | | | TST: error tests for diag_indices_from()Tyler Reddy2018-10-101-5/+17
| |/ / / / | | | | | | | | | | | | | | | | | | | | * add unit tests for previously uncovered error handling code in diag_indices_from()
* | | | | Merge pull request #12134 from MartinThoma/masterMatti Picus2018-10-111-2/+1
|\ \ \ \ \ | | | | | | | | | | | | DOC: Remove duplicated sentence in numpy.multiply
| * | | | | DOC: Remove duplicated sentence in numpy.multiplyMartin Thoma2018-10-101-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | The return value documentation was duplicated.
* | | | | | Merge pull request #12141 from rgommers/coc-tweakTyler Reddy2018-10-101-2/+1
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | DOC: minor tweak to CoC (update NumFOCUS contact address).
| * | | | | DOC: minor tweak to CoC (update NumFOCUS contact address).Ralf Gommers2018-10-101-2/+1
|/ / / / / | | | | | | | | | | | | | | | [ci skip]