Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: Introduce Unknown array type to deal with NDArray[Any] more gracefully. | iantra | 2022-09-05 | 1 | -14/+48 |
| | |||||
* | BUG: change overload order to play nice with pyright. | iantra | 2022-09-01 | 1 | -27/+27 |
| | | | | Pyright just chooses the first matching type whenever there is ambiguity in type resolution, which leads to NoReturn for the cross function in certain situations. Other overloads were changed to match. See ticket #22146 | ||||
* | MAINT: Split `numpy.typing` into a public and private component | Bas van Beek | 2022-03-18 | 1 | -1/+1 |
| | | | | i.e. `numpy.typing` and `numpy._typing` | ||||
* | MAINT: Create the `_ArrayLike` type-alias in `numpy.typing` | Bas van Beek | 2022-01-24 | 1 | -4/+1 |
| | | | | Represents a subset of `npt.ArrayLike` that can be parametrized w.r.t. `np.generic` | ||||
* | MAINT: Create the `_DTypeLike` type-alias in `numpy.typing` | Bas van Beek | 2022-01-24 | 1 | -7/+1 |
| | | | | Represents a subset of `npt.DTypeLike` that can be parametrized w.r.t. `np.generic` | ||||
* | ENH: Type the `like` parameter via a `__array_function__` protocol | Bas van Beek | 2022-01-11 | 1 | -10/+11 |
| | |||||
* | STY: Use subscriptable `collections.abc` types over the generic aliases in … | Bas van Beek | 2021-12-23 | 1 | -2/+1 |
| | |||||
* | STY: Use subscriptable `builtins` types over the generic aliases in `typing` | Bas van Beek | 2021-12-23 | 1 | -17/+14 |
| | |||||
* | ENH: Add dtype-support to `np.core.numeric` | Bas van Beek | 2021-10-26 | 1 | -59/+473 |
| | |||||
* | MAINT: Drop .pyi code-paths specific to Python 3.7 | Bas van Beek | 2021-08-30 | 1 | -6/+1 |
| | |||||
* | MAINT: Move `empty_like` to `np.core.multiarray` | Bas van Beek | 2021-06-06 | 1 | -17/+0 |
| | |||||
* | fix gh-19056 | Ismael Jimenez | 2021-05-22 | 1 | -1/+1 |
| | |||||
* | MAINT: Remove unsafe unions from `np.core.numeric` | Bas van Beek | 2021-04-30 | 1 | -9/+63 |
| | |||||
* | MAINT: Rename `DtypeLike` to `DTypeLike` | Bas van Beek | 2020-11-03 | 1 | -11/+11 |
| | |||||
* | TST: Fixed a broken `np.core.numeric` test | Bas van Beek | 2020-10-21 | 1 | -2/+2 |
| | |||||
* | MAINT: Update the `axes` parameter of `tensordot` | Bas van Beek | 2020-10-21 | 1 | -1/+1 |
| | | | | `axes` can take either an integer or a 2-tuple of shape-like objects | ||||
* | MAINT: Updated the annotations in `np.core.numeric` | Bas van Beek | 2020-10-14 | 1 | -24/+96 |
| | | | | | | * Added missing overloads * Use `DtypeLike` and `_Shapelike` where applicable * Moved a few annotation-aliases to the top of the module | ||||
* | MAINT: Move the `np.core.numeric` functions to their own stub file | Bas van Beek | 2020-10-07 | 1 | -0/+117 |