-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
[PERF] fixing memory leak in aggregation.pyx #44032
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just need a whatsnew note (for v1.4), otherwise LGTM
doc/source/whatsnew/v1.4.0.rst
Outdated
@@ -508,6 +508,7 @@ Groupby/resample/rolling | |||
- Fixed bug in :meth:`Series.rolling` and :meth:`DataFrame.rolling` not calculating window bounds correctly for the first row when ``center=True`` and index is decreasing (:issue:`43927`) | |||
- Bug in :meth:`GroupBy.nth` failing on ``axis=1`` (:issue:`43926`) | |||
- Fixed bug in :meth:`Series.rolling` and :meth:`DataFrame.rolling` not respecting right bound on centered datetime-like windows, if the index contain duplicates (:issue:`#3944`) | |||
- Fixed memory leaks in :func:`roll_quantile` and :func:`roll_median_c` (:issue:`#43339`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nits:
:meth:`Series.rolling.quantile` and :meth:`Series.rolling.median`
No need for a #
next to the issue number.
would be ok including this in 1.3.x if you can move the note |
fa3a5d0
to
e0967cb
Compare
cc @simonjayhawkins ok to include this for 1.3.4 |
sure. |
thanks @realead |
@meeseeksdev backport 1.3.x |
Something went wrong ... Please have a look at my logs. |
) Co-authored-by: realead <[email protected]>
The old memory needs to be released, before the pointer switches to the new list.