The next NumPy triage meeting will be held this Wednesday, April 16th at
17:00 (5 pm) UTC. This is a meeting where we synchronously triage
prioritized PRs and issues. Everyone is welcome to attend and contribute to
a conversation.
Join us via Zoom:
https://numfocus-org.zoom.us/j/82096749952?pwd=MW9
On Sat, Apr 12, 2025 at 12:13 PM Mateusz Sokol wrote:
> Hi all!
>
> The Array API standard states that `T` property should only be applied to
> 2-dimensional arrays, in all other cases it should raise an error:
>
> https://data-apis.org/array-api/latest/API_specification/generated/array_api.array
> The new discrepancy between `arr.T` and `arr.transpose()` is justified, as
> `T` is defined by the Array API, where `transpose` isn't and should retain
> the existing behavior.
The other side of the coin here is that this change would fix the
discrepancy between `arr.T` and the functions `np.ma
Hi all!
The Array API standard states that `T` property should only be applied to
2-dimensional arrays, in all other cases it should raise an error:
https://data-apis.org/array-api/latest/API_specification/generated/array_api.array.T
To ensure that NumPy also follows this rule, I opened a PR tha