Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [MAINT] Cleanup python2 sys.version checks | Seth Troisi | 2020-01-20 | 1 | -5/+1 |
| | |||||
* | MAINT: Remove implicit inheritance from object class (#15236) | Jon Dufresne | 2020-01-05 | 1 | -1/+1 |
| | | | | | | | Inheriting from object was necessary for Python 2 compatibility to use new-style classes. In Python 3, this is unnecessary as there are no old-style classes. Dropping the object is more idiomatic Python. | ||||
* | MAINT: Remove unnecessary 'from __future__ import ...' statements | Jon Dufresne | 2020-01-03 | 1 | -2/+0 |
| | | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior. | ||||
* | MAINT: fix issue with `np.lib.mixins.__all__` and import of mixins | Ralf Gommers | 2019-09-19 | 1 | -2/+2 |
| | |||||
* | ENH: implement matmul on NDArrayOperatorsMixin (#12488) | Stephan Hoyer | 2018-12-05 | 1 | -3/+2 |
| | | | | | | * ENH: implement matmul on NDArrayOperatorsMixin * MAINT: remove unnecessary pytest import | ||||
* | DOC: clear up warnings, fix matplotlib plot | mattip | 2018-04-17 | 1 | -2/+2 |
| | |||||
* | DOC: add versionadded for NDArrayOperatorsMixin. | Stephan Hoyer | 2018-03-04 | 1 | -0/+2 |
| | |||||
* | ENH: add divmod support to NDArrayOperatorsMixin | Stephan Hoyer | 2017-05-07 | 1 | -3/+5 |
| | |||||
* | ENH: add __pos__ to NDArrayOperatorsMixin | Stephan Hoyer | 2017-04-30 | 1 | -2/+3 |
| | |||||
* | 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 | 1 | -30/+29 |
| | | | | | | | | | * 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/+11 |
| | |||||
* | ENH: Add NDArrayOperatorsMixin mixin class. | Stephan Hoyer | 2017-04-27 | 1 | -0/+167 |
This mixin class provides an easy way to implement arithmetic operators that defer to __array_ufunc__ like numpy.ndarray in non-ndarray subclasses. |