| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | allow non-strictly increasing bins | Brandon Carter | 2017-09-24 | 1 | -1/+1 |
| | | |||||
| * | minor change to the logic | Brandon Carter | 2017-09-24 | 1 | -1/+1 |
| | | |||||
| * | BUG: fixes unsigned bins monotonicity check, see #9222 | Brandon Carter | 2017-09-24 | 1 | -1/+1 |
| | | |||||
| * | TST: add test for unsigned bins monotonicity check, see #9222 | Brandon Carter | 2017-09-24 | 1 | -0/+8 |
| | | |||||
| * | Merge pull request #9742 from charris/backport-pad-fixes | Charles Harris | 2017-09-22 | 2 | -0/+19 |
| |\ | | | | | BUG: Fix np.pad for CVE-2017-12852 | ||||
| | * | BUG: fix padding an empty array in reflect mode. | Iryna Shcherbina | 2017-09-22 | 2 | -3/+15 |
| | | | | | | | | | Check that axes with non-zero padding are non-empty. | ||||
| | * | BUG: fix infinite loop when creating np.pad on an empty array | Iryna Shcherbina | 2017-09-22 | 2 | -0/+7 |
| | | | |||||
| * | | Merge pull request #9736 from eric-wieser/gradient-fix | Charles Harris | 2017-09-21 | 2 | -8/+20 |
| |\ \ | |/ |/| | BUG: various fixes to np.gradient | ||||
| | * | MAINT: Use clearer variable | Eric Wieser | 2017-07-13 | 1 | -1/+1 |
| | | | |||||
| | * | BUG: Use np.ndim not asarray, to allow duck-types | Eric Wieser | 2017-07-13 | 1 | -7/+6 |
| | | | |||||
| | * | BUG: Only allow 1d distance arrays | Eric Wieser | 2017-07-13 | 2 | -1/+7 |
| | | | | | | | | | | | | | 2d arrays would work, but in unpredictable and undocumented ways. This at least makes gh-9401 give a better error message. | ||||
| | * | BUG: Allow 0d arrays instead of scalars in gradient | Eric Wieser | 2017-07-13 | 2 | -8/+15 |
| | | | | | | | | | This fixes gh-8292 | ||||
| * | | Merge pull request #9390 from eric-wieser/poly1d-fixes-fixes-fixes-fixes | Charles Harris | 2017-07-11 | 2 | -11/+17 |
| |\ \ | | | | | | | BUG: Return the coefficients array directly | ||||
| | * | | BUG: Return the coefficients array directly | Eric Wieser | 2017-07-08 | 2 | -11/+17 |
| | | | | | | | | | | | | | | | | | | | | | | Turns out that this was relied upon downstream We also add a setter for coeffs, so that augmented assignment does not both change state and raise an exception suggesting state could not be changed. | ||||
| * | | | DOC: BLD: fix lots of Sphinx warnings/errors. | Ralf Gommers | 2017-06-10 | 2 | -2/+2 |
| | | | | |||||
| * | | | BUG: have as_strided() keep custom dtypes | Antoine Pitrou | 2017-05-24 | 2 | -4/+11 |
| | | | | | | | | | | | | | Fixes issue #9161 | ||||
| * | | | DEP: Deprecate incorrect behavior of expand_dims. | Charles Harris | 2017-05-17 | 2 | -4/+40 |
| | |/ |/| | | | | | | | | | | | | | | | | | | | Expand_dims works as documented when the index of the inserted NewAxis in the resulting array satisfies -a.ndim - 1 <= index <= a.ndim. However, when index > a.ndim index is replaced by a.ndim and, when index < -a.ndim - 1, it is replaced by index + a.ndim + 1, which may be negative and results in incorrect placement. The latter two cases are now deprecated. Closes #9100. | ||||
| * | | Merge pull request #9070 from ahaldane/silence_join_by | Eric Wieser | 2017-05-10 | 2 | -6/+49 |
| |\ \ | | | | | | | BUG: Preserve field order in join_by, avoids FutureWarning | ||||
| | * | | BUG: Preserve field order in join_by, avoids FutureWarning | Allan Haldane | 2017-05-09 | 2 | -6/+49 |
| | | | | | | | | | | | | | Fixes #8940 | ||||
| * | | | ENH: Spelling fixes | Ville Skyttä | 2017-05-09 | 8 | -9/+9 |
| |/ / | |||||
| * | | DOC: fix docstring for np.isin | Stephan Hoyer | 2017-05-07 | 1 | -0/+1 |
| | | | |||||
| * | | ENH: add divmod support to NDArrayOperatorsMixin | Stephan Hoyer | 2017-05-07 | 2 | -40/+60 |
| | | | |||||
| * | | BUG: np.ma.mr_['r',...] does not return masked arrays | Eric Wieser | 2017-05-05 | 1 | -3/+3 |
| | | | |||||
| * | | BUG: np.r_['r',...] crashes on scalars | Eric Wieser | 2017-05-05 | 2 | -1/+6 |
| | | | |||||
| * | | BUG: np.r_['rc'] is treated as np.r_['r'], not an error | Eric Wieser | 2017-05-05 | 2 | -1/+3 |
| | | | |||||
| * | | TST: Add some tests for passing r and c to r_ | Eric Wieser | 2017-05-05 | 1 | -0/+13 |
| | | | |||||
| * | | MAINT: Use enumerate instead of range(len(...)) | Eric Wieser | 2017-05-05 | 1 | -15/+14 |
| | | | |||||
| * | | BUG: Remove mutable state from AxisConcatenator | Eric Wieser | 2017-05-05 | 2 | -29/+37 |
| | | | | | | | | | Fixes #8815 | ||||
| * | | MAINT: Remove code duplicated from np.r_ in np.ma.mr_ | Eric Wieser | 2017-05-05 | 1 | -1/+3 |
| | | | | | | | | | | | Also adds a test for the disabled-by-design behaviour - this would return raw matrices, not masked arrays | ||||
| * | | ENH: Add isin, genereralizing in1d to ND arrays (#8423) | B R S Recht | 2017-05-05 | 3 | -7/+145 |
| | | | | | | | | | | | | | This fixes gh-8331 Also update the docs for arraysetops to remove the outdated "1D" from the description, which was already incorrect for np.unique. | ||||
| * | | ENH: add __pos__ to NDArrayOperatorsMixin | Stephan Hoyer | 2017-04-30 | 2 | -3/+4 |
| | | | |||||
| * | | Merge pull request #8885 from juliantaylor/tracemalloc | Charles Harris | 2017-04-30 | 1 | -1/+2 |
| |\ \ | | | | | | | ENH: add support for python3.6 memory tracing | ||||
| | * | | ENH: add support for python3.6 memory tracing | Julian Taylor | 2017-04-28 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python 3.6 added a private API for tracing arbitrary memory allocations so the tracemalloc module [0] can be used with numpy. closes gh-4663 [0] https://docs.python.org/3/library/tracemalloc.html | ||||
| * | | | Merge pull request #9013 from eric-wieser/fix-nanfuncs | Charles Harris | 2017-04-28 | 2 | -15/+31 |
| |\ \ \ | |/ / |/| | | BUG: Fix np.lib.nanfunctions on object arrays | ||||
| | * | | BUG: Fix incorrect behavior of nanfunctions on object arrays | Eric Wieser | 2017-04-29 | 2 | -8/+28 |
| | | | | | | | | | | | | | Fixes gh-8974 and gh-9008 | ||||
| | * | | MAINT: Remove weird create-a-copy dance | Eric Wieser | 2017-04-27 | 1 | -6/+2 |
| | | | | |||||
| * | | | Merge pull request #8996 from eric-wieser/fix-ufunclike | Marten van Kerkwijk | 2017-04-27 | 2 | -27/+84 |
| |\ \ \ | | | | | | | | | BUG/DEP: Make ufunclike functions more ufunc-like | ||||
| | * | | | BUG: Return scalars from ufunclike objects | Eric Wieser | 2017-04-26 | 2 | -17/+35 |
| | | | | | | | | | | | | | | | | | | | | | | | | | No need to reinvent the wheel here - the ufunc machinery will handle the out arguments Fixes #8993 | ||||
| | * | | | DEP: Deprecate calling the `out` argument `y` | Eric Wieser | 2017-04-26 | 2 | -20/+59 |
| | | | | | | | | | | | | | | | | | Fixes gh-8995 | ||||
| * | | | | Merge pull request #8988 from eric-wieser/document-2522 | Charles Harris | 2017-04-27 | 1 | -0/+17 |
| |\ \ \ \ | | | | | | | | | | | DOC: Explain the behavior of diff on unsigned types | ||||
| | * | | | | DOC: Explain the behavior of diff on unsigned types | Eric Wieser | 2017-04-25 | 1 | -0/+17 |
| | |/ / / | | | | | | | | | | | | | Fixes #2522 | ||||
| * | | | | MAINT: Set the __name__ of generated methods | Eric Wieser | 2017-04-27 | 1 | -30/+37 |
| | |/ / |/| | | | | | | | | Barely useful, but means that the function name is helpful if printed. | ||||
| * | | | ENH: NDArrayOperatorsMixin calls ufuncs directly, like ndarray | Stephan Hoyer | 2017-04-27 | 2 | -40/+36 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ENH: NDArrayOperatorsMixin calls ufuncs directly, like ndarray Per our discussion in https://github.com/numpy/numpy/pull/8247#discussion_r112825050 * add back in accidentally dropped __repr__ | ||||
| * | | | BUG: Fix ArrayLike(NDArrayOperatorsMixin) operations with object() | Stephan Hoyer | 2017-04-27 | 2 | -12/+31 |
| | | | | |||||
| * | | | ENH: Add NDArrayOperatorsMixin mixin class. | Stephan Hoyer | 2017-04-27 | 3 | -0/+358 |
| |/ / | | | | | | | | | | | This mixin class provides an easy way to implement arithmetic operators that defer to __array_ufunc__ like numpy.ndarray in non-ndarray subclasses. | ||||
| * | | DOC: Correct shape of edges in np.histogram2d (#8980) | Importance of Being Ernest | 2017-04-23 | 1 | -2/+2 |
| | | | | | | | | | | | If nx and ny are the bin counts (as stated in the bins argument's text), then the return H has indeed shape (nx, ny). However, the returned xedges and yedges will then have shape (nx+1,) and (ny+1,) respectively. Fixes #8979 | ||||
| * | | Merge pull request #6632 from mcmtroffaes/feature/fromfile-ioopen-bug | Charles Harris | 2017-04-14 | 1 | -2/+3 |
| |\ \ | | | | | | | TST/BUG: fromfile - fix test and expose bug with io class argument | ||||
| | * | | BUG: npy_PyFile_Dup2 - fix PyFile_AsFile failing on io style classes | Matthias C. M. Troffaes | 2016-09-08 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This bug only manifests itself in the Python 2 code path. Falls back to the current Python 3 code path also on Python 2 because the Python 3 code path is written precisely to handle this situation. Also fix tests, and clarify in the documentation that the current implementation requires the stream to be seekable. | ||||
| * | | | Merge pull request #8643 from eric-wieser/fix-8642 | Eric Wieser | 2017-04-11 | 2 | -1/+18 |
| |\ \ \ | | | | | | | | | BUG: Fix double-wrapping of object scalars | ||||
| | * | | | BUG: Fix double-wrapping of object scalars | Eric Wieser | 2017-04-06 | 2 | -1/+18 |
| | | | | | | | | | | | | | | | | | Fixes #8642 | ||||
