[Numpy-discussion] Documentation Team meeting - Monday August 1st at 2pm UTC

2022-07-30 Thread Melissa Mendonça
Hi all! Our next Documentation Team meeting will happen on *Monday, August 1st* at ***2PM UTC***. All are welcome - you don't need to already be a contributor to join. If you have questions or are curious about what we're doing, we'll be happy to meet you! If you wish to join on Zoom, use this l

[Numpy-discussion] Proposal: Indexing by callables

2022-07-30 Thread Matteo Santamaria
Hi all, I’d like to open a discussion on supporting callables within `np.ndarray.__getitem__`. The intent is to make long function-chaining expressions more ergonomic by removing the need for an intermediary, temporary value. Instead of ``` tmp = long_and_complicated_expression(arr) return tm