Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | TST: Remove unittest dependencies in numpy/lib/tests. | Charles Harris | 2017-07-24 | 1 | -2/+3 |
| | |||||
* | ENH: add divmod support to NDArrayOperatorsMixin | Stephan Hoyer | 2017-05-07 | 1 | -37/+55 |
| | |||||
* | ENH: add __pos__ to NDArrayOperatorsMixin | Stephan Hoyer | 2017-04-30 | 1 | -1/+1 |
| | |||||
* | ENH: NDArrayOperatorsMixin calls ufuncs directly, like ndarray | Stephan Hoyer | 2017-04-27 | 1 | -10/+7 |
| | | | | | | | | | * 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 | 1 | -6/+20 |
| | |||||
* | ENH: Add NDArrayOperatorsMixin mixin class. | Stephan Hoyer | 2017-04-27 | 1 | -0/+189 |
This mixin class provides an easy way to implement arithmetic operators that defer to __array_ufunc__ like numpy.ndarray in non-ndarray subclasses. |