summaryrefslogtreecommitdiff
path: root/numpy/array_api
Commit message (Collapse)AuthorAgeFilesLines
...
* Move the array API dtype categories into the top levelAaron Meurer2021-08-043-26/+17
| | | | | They are not an official part of the spec but are useful for various parts of the implementation.
* Remove unused importAaron Meurer2021-08-041-1/+1
|
* Remove asarray() calls from the array API statistical functionsAaron Meurer2021-08-041-5/+5
| | | | asarray() is already called in Array._new.
* Remove no longer comment about the keepdims argument to argminAaron Meurer2021-08-041-2/+0
|
* Print a warning when importing the numpy.array_api submoduleAaron Meurer2021-08-041-0/+4
|
* Rename numpy._array_api to numpy.array_apiAaron Meurer2021-08-0419-0/+3020
Instead of the leading underscore, the experimentalness of the module will be indicated by omitting a warning on import. That we, we do not have to change the API from underscore to no underscore when the module is no longer experimental.