[Numpy-discussion] Re: Upcoming event ==> Contributing to the NumPy Documentation (Jul 15, 2025)

2025-07-16 Thread Reshama Shaikh via NumPy-Discussion
Hello, We had quite an enthusiastic crowd at today's webinar by Mukulika: Contributing to the NumPy Documentation A link to the video, slides and all shared links is available here: https://blog.dataumbrella.org/numpy An attendee, Charlotte Wickham, already submitted an issue: https://github.com/

[Numpy-discussion] ENH: Add a non-circular shift function

2025-07-16 Thread Carlos Martin
Feature request: Add a non-circular shift function that is similar to [`numpy.roll`](https://numpy.org/doc/stable/reference/generated/numpy.roll.html) but, instead of wrapping elements around, replaces unoccupied entries with a specified fill value. Examples: ``` >>> import numpy as np >>> a =