summaryrefslogtreecommitdiff
path: root/doc/source/reference/array_api.rst
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Some updates to the array_api compat document (#22747)Aaron Meurer2022-12-061-3/+14
| | | | | | | * Add reshape differences to the array API compat document * Add an item to the array API compat document about reverse broadcasting * Make some wording easier to read
* MAINT: Fix typos found by codespellDimitri Papadopoulos2022-10-071-1/+1
|
* Mention positional-only arguments in the array API compatibility docAaron Meurer2022-06-081-0/+5
| | | | | I forgot to mention them, but they are important because this would be a breaking change.
* Small updates to the array_api docsAaron Meurer2022-04-111-5/+4
| | | | | These items were not clear in the original PR #21260 but have since been clarified.
* Note that keyword arguments with different defaults are breakingAaron Meurer2022-03-301-11/+17
| | | | | This applies even of the name changed, because it affects the case where no keyword is passed.
* Update review comments on the array API documentAaron Meurer2022-03-291-9/+12
|
* Add a note about the array API copy flag to reshape (which is not yet ↵Aaron Meurer2022-03-291-0/+3
| | | | implemented)
* Address review comments in the array API documentationAaron Meurer2022-03-291-4/+9
|
* Add a document that enumerates the differences between numpy and numpy.array_apiAaron Meurer2022-03-281-0/+787
This is a more organized presentation of the various "Note" comments in numpy/array_api. In particular, each difference is notated as to whether it is a strictness difference (no change in NumPy needed), a compatible change (NumPy can change in a backwards compatible way), or a breaking change (NumPy would need to break backwards compatibility to match the spec).