summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | MAINT: add __doc__ to minimumEric Wieser2017-05-061-32/+8
| * | | | | STY: Tabs to spacesEric Wieser2017-05-061-20/+20
| * | | | | DEP: inconsistent axis default for np.ma.maximumEric Wieser2017-05-064-17/+51
| * | | | | DEP: Deprecate single-argument np.ma.m(in|ax)imumEric Wieser2017-05-065-13/+31
| * | | | | DEP: Deprecate np.ma.MaskedArray.miniEric Wieser2017-05-062-1/+25
* | | | | | Merge pull request #9062 from longjon/deprecation-double-spaceEric Wieser2017-05-061-0/+2
|\ \ \ \ \ \
| * | | | | | STY: two blank lines between classes per PEP8Jonathan L Long2017-05-051-0/+2
| |/ / / / /
* | | | | | Merge pull request #9061 from longjon/userdef-conjugateEric Wieser2017-05-061-1/+2
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| * | | | | BUG: ndarray.conjugate broken for custom dtypes (unlike np.conjugate)Jonathan L Long2017-05-051-1/+2
| |/ / / /
* | | | | Merge pull request #9024 from zengi/patch-1Charles Harris2017-05-051-1/+1
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Correction in default stop index value for negative stepping.zengi2017-04-291-1/+1
* | | | | Merge pull request #8918 from eric-wieser/deprecate-ma-argsort-no-axisCharles Harris2017-05-053-4/+90
|\ \ \ \ \
| * | | | | DEP: deprecate calling ma.argsort without an axisEric Wieser2017-05-053-4/+90
| | |_|/ / | |/| | |
* | | | | Merge pull request #8911 from eric-wieser/fix-check_api_dictCharles Harris2017-05-051-10/+14
|\ \ \ \ \
| * | | | | STY: Change string formatting line-wrappingEric Wieser2017-04-131-6/+5
| * | | | | MAINT: Improve error message formatEric Wieser2017-04-131-4/+6
| * | | | | BUG: check_api_dict does not correctly handle tuple valuesEric Wieser2017-04-131-5/+8
* | | | | | Merge pull request #8816 from eric-wieser/fix-r_Charles Harris2017-05-054-93/+94
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | BUG: np.ma.mr_['r',...] does not return masked arraysEric Wieser2017-05-053-3/+17
| * | | | | BUG: np.r_['r',...] crashes on scalarsEric Wieser2017-05-052-1/+6
| * | | | | BUG: np.r_['rc'] is treated as np.r_['r'], not an errorEric Wieser2017-05-052-1/+3
| * | | | | TST: Add some tests for passing r and c to r_Eric Wieser2017-05-051-0/+13
| * | | | | MAINT: Use enumerate instead of range(len(...))Eric Wieser2017-05-051-15/+14
| * | | | | BUG: Remove mutable state from AxisConcatenatorEric Wieser2017-05-052-29/+37
| * | | | | MAINT: Remove code duplicated from np.r_ in np.ma.mr_Eric Wieser2017-05-053-52/+12
* | | | | | Merge pull request #9027 from shoyer/ufunc-overrides-nep-updateCharles Harris2017-05-051-31/+134
|\ \ \ \ \ \
| * | | | | | DOC: Improve wording in ufunc_override NEP.Charles Harris2017-05-051-4/+5
| * | | | | | DOC: simply -> simplifyStephan Hoyer2017-05-011-1/+1
| * | | | | | Further clarificationsStephan Hoyer2017-04-301-23/+45
| * | | | | | DOC: fixups per charris's reviewStephan Hoyer2017-04-301-4/+4
| * | | | | | DOC: update binary-op/ufunc sections in ufunc-overides NEPStephan Hoyer2017-04-291-31/+111
* | | | | | | Merge pull request #9039 from eric-wieser/as-strided_docsCharles Harris2017-05-051-0/+1
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | |
| * | | | | | DOC: actually produce docs for as_stridedEric Wieser2017-05-031-0/+1
| | |_|_|_|/ | |/| | | |
* | | | | | ENH: Add isin, genereralizing in1d to ND arrays (#8423)B R S Recht2017-05-058-10/+203
* | | | | | Merge pull request #8948 from juliantaylor/deprecate-NPY_CHARCharles Harris2017-05-0310-12/+132
|\ \ \ \ \ \
| * | | | | | MAINT: Add date and numpy version to TestNPY_CHAR.Charles Harris2017-05-031-0/+1
| * | | | | | DOC: add NPY_CHAR note to release notesJulian Taylor2017-05-031-0/+3
| * | | | | | MAINT: add deprecation warnings for NPY_CHAR usageJulian Taylor2017-05-034-1/+44
| * | | | | | MAINT: remove usage of NPY_CHAR from f2pyJulian Taylor2017-05-023-11/+29
| * | | | | | TST: add a char array input testJulian Taylor2017-05-022-0/+55
|/ / / / / /
* | | | | | Merge pull request #9038 from juliantaylor/no-rebuild-argsCharles Harris2017-05-013-5/+34
|\ \ \ \ \ \
| * | | | | | BUG: check compiler flags to determine the need for a rebuildJulian Taylor2017-05-023-5/+34
* | | | | | | Merge pull request #8989 from eric-wieser/object-reprCharles Harris2017-05-013-0/+26
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | |
| * | | | | | DOC: Release note and docstringEric Wieser2017-05-012-0/+8
| * | | | | | ENH: Print object arrays containing lists unambiguouslyEric Wieser2017-05-012-0/+18
* | | | | | | Merge pull request #8876 from eric-wieser/ufunc-refactorEric Wieser2017-05-011-116/+141
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | MAINT: Compute core_dim_ixs_size near where it is usedEric Wieser2017-04-061-2/+4
| * | | | | | MAINT: Pull out large function from PyUFunc_GeneralizedFunctionEric Wieser2017-04-061-105/+121
| * | | | | | BUG: Use the same default ufunc name in all placesEric Wieser2017-04-061-9/+16
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #8967 from shoyer/positiveEric Wieser2017-05-0113-5/+117
|\ \ \ \ \ \