summaryrefslogtreecommitdiff
path: root/numpy/_array_api/_array_object.py
Commit message (Expand)AuthorAgeFilesLines
* Assume the current array API version is 2021.<something>Aaron Meurer2021-07-231-2/+2
* Fix the array API Array.__setitem__Aaron Meurer2021-07-231-2/+1
* Fix the array API __abs__() to restrict to numeric dtypesAaron Meurer2021-07-221-0/+2
* Remove some dead codeAaron Meurer2021-07-221-4/+0
* Add some more comments about array API type promotion stuffAaron Meurer2021-07-221-1/+8
* Use ValueError instead of TypeError for array API @=Aaron Meurer2021-07-221-1/+1
* Restrict the array API namespace array operator type promotionsAaron Meurer2021-07-211-106/+199
* Always include the dtype in the array API Array reprAaron Meurer2021-07-201-1/+1
* Start adding tests for the array API submoduleAaron Meurer2021-07-191-1/+3
* Change the type hint for stream __dlpack__ to just NoneAaron Meurer2021-07-161-2/+2
* Add type hints to the array API __setitem__Aaron Meurer2021-07-161-1/+1
* Use asarray to convert a scalar into an array in the array API Array constructorAaron Meurer2021-07-161-3/+1
* Move the dtype check to the array API Array._new constructorAaron Meurer2021-07-161-1/+3
* Make numpy._array_api.Array.device return "cpu"Aaron Meurer2021-07-151-7/+1
* Fix some spelling errorsAaron Meurer2021-07-151-5/+5
* Remove error ignoring in the array API namespaceAaron Meurer2021-07-151-21/+0
* Move _validate_index above the methods that are actually part of the specAaron Meurer2021-07-151-102/+102
* Add a comment about the _normalize_two_args trickAaron Meurer2021-07-151-0/+6
* Correct disallow things like a[(0, 1), (0, 1)] in the array API namespaceAaron Meurer2021-07-151-0/+2
* Use ndim == 0 instead of shape == () in the array API codeAaron Meurer2021-07-151-16/+16
* Make the array API left and right shift do type promotionAaron Meurer2021-07-091-20/+8
* Fix some typing importsAaron Meurer2021-07-091-2/+2
* Update the type hints for the array API __pow__ and __truediv__Aaron Meurer2021-07-091-6/+10
* Only allow floating-point dtypes in the array API __pow__ and __truediv__Aaron Meurer2021-07-091-0/+12
* Rename numpy/_array_api/_types.py to numpy/_array_api/_typing.pyAaron Meurer2021-07-091-1/+1
* Small code cleanupAaron Meurer2021-07-091-1/+1
* Use better type signatures in the array API moduleAaron Meurer2021-07-091-7/+8
* Rename the array class in the array API namespace from ndarray to ArrayAaron Meurer2021-07-081-16/+16
* Capitalize the names of the type hint types in the array APIAaron Meurer2021-07-081-59/+59
* Fix the __imatmul__ method in the array API namespaceAaron Meurer2021-07-081-2/+11
* Fix in-place operators to not recreate the wrapper classAaron Meurer2021-07-081-26/+24
* Update a function signature from the array API specAaron Meurer2021-06-141-2/+2
* 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