-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
CLN, DOC: Remove unused parameters #13167
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
CLN, DOC: Remove unused parameters #13167
Conversation
@gfyoung This is OK? I think dtype and out are already checked in |
I would like to say "LGTM", but unfortunately, Travis disagrees. You will have to edit You probably should also then do some pre-processing on Please look at @Michael-E-Rose : Sorry if this is more complicated than you had expected! You unfortunately walked into a compatibility minefield with these functions. Let me know if you have any questions! |
My nosetests run 0 tests - quite useless. Being in root, I did as explained here, but all I get is
|
you need to make sure that you build in-place and run them there. Not sure what e.g. something like
|
Root of the repo. But my build process has quite a long output as well. Mostly warnings about outdated stuff etc. |
@Michael-E-Rose : Because this is actually a
|
@Michael-E-Rose can you rebase / update |
No sorry. This is too complicated for me. On 30 June 2016 at 12:20, Jeff Reback [email protected] wrote:
Michael E. Rose / PhD student University of Cape Town | African Institute of Financial Markets and Risk |
@Michael-E-Rose : I can take a look since I have waded through those muddy waters that are compat with |
It's alright, thanks. I close this now. |
Picks up from #13167 by properly removing the parameters and ensuring that `numpy` compatibility has been maintained. The current test suite does a good job of checking that already, so no tests were added. Closes #13541. Author: gfyoung <[email protected]> Closes #13550 from gfyoung/cum-func-cleanup and squashes the following commits: 6ba7a77 [gfyoung] Removed unnecessary params in cum_func
git diff upstream/master | flake8 --diff
out
anddtype
fromcumulated
functions (cummin
,cumsum
,cumprod
,cummax
)This also affects the documentation. Check for example: http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.cumsum.html, where the two parameters are mentioned, but not explained.