summaryrefslogtreecommitdiff
path: root/numpy/array_api/tests/test_elementwise_functions.py
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Allow integer inputs for pow-related functions in `array_api`Matthew2022-01-071-1/+1
| | | | Updates `xp.power()`, `x.__pow__()`, `x.__ipow()__` and `x.__rpow()__`
* Run (selective) black on the array_api submoduleAaron Meurer2021-08-061-61/+72
| | | | | | I've omitted a few changes from black that messed up the readability of some complicated if statements that were organized logically line-by-line, and some changes that use unnecessary operator spacing.
* Fix some dictionary key mismatches in the array API testsAaron Meurer2021-08-061-27/+27
|
* Move the array API dtype categories into the top levelAaron Meurer2021-08-041-13/+3
| | | | | They are not an official part of the spec but are useful for various parts of the implementation.
* Rename numpy._array_api to numpy.array_apiAaron Meurer2021-08-041-0/+110
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.