Hi all,
We now have "Triage-review" and "Triaged" labels, to go with the bi-weekly
meeting we will start with this week. For those that missed it in the notes
from the sprint: the idea is to change from the weekly "community call"
meetings to:
1. a bi-weekly community call with higher-level topic
This looks good to me!
On Mon, Dec 2, 2019 at 11:13 AM Sebastian Berg
wrote:
> Hi all,
>
> Pull request 14051:
>
> https://github.com/numpy/numpy/pull/14051
>
> means that `np.expand_dims` now accepts multiple axes in the `axis`
> argument. As before, the axis signal where a new axis is in the o
Hi all,
Pull request 14051:
https://github.com/numpy/numpy/pull/14051
means that `np.expand_dims` now accepts multiple axes in the `axis`
argument. As before, the axis signal where a new axis is in the output
array. From the new tests:
a = np.empty((3, 3, 3))
np.expand_dims(a, axis=(0, 1, 2)).s