summaryrefslogtreecommitdiff
path: root/numpy/_array_api/_array_object.py
Commit message (Expand)AuthorAgeFilesLines
* Update signatures from the latest version of the array API specAaron Meurer2021-05-201-42/+42
* Ignore warnings in array API functions that can raise themAaron Meurer2021-05-171-1/+24
* Fix some error messagesAaron Meurer2021-04-301-2/+2
* Fix type promotion consistency for the array API elementwise functions and op...Aaron Meurer2021-04-151-53/+127
* Make the array API follow the spec Python scalar promotion rulesAaron Meurer2021-03-311-1/+128
* Update some annotations updated from the specAaron Meurer2021-03-301-2/+2
* Fix circular imports from typesAaron Meurer2021-03-171-1/+4
* Use more robust code for converting an array scalar to a shape () arrayAaron Meurer2021-03-111-2/+4
* Add a small docstring to the array API ndarray objectAaron Meurer2021-03-091-0/+14
* Use 'self' and 'other' for the array API ndarray method parameter namesAaron Meurer2021-03-091-177/+177
* Implement __array_namespace__ on the array API ndarray objectAaron Meurer2021-03-091-0/+6
* Only allow indices that are required by the spec in the array API namespaceAaron Meurer2021-03-091-0/+115
* Make sure the array API ndarray object cannot wrap an array scalarAaron Meurer2021-03-021-0/+6
* Only allow __bool__, __int__, and __float__ on arrays with shape ()Aaron Meurer2021-03-021-0/+9
* Fix some dunder methods on that should not be converting things to arraysAaron Meurer2021-03-021-5/+5
* Fix the dunder methods on array_api.ndarrayAaron Meurer2021-02-261-72/+88
* Use a different repr form for array_api.ndarray than arrayAaron Meurer2021-02-261-2/+2
* Implement a simple passthrough __str__ and __repr__ on the array_api ndarray ...Aaron Meurer2021-02-231-0/+17
* Start implementing wrapper object for the array APIAaron Meurer2021-02-231-0/+479