-
Notifications
You must be signed in to change notification settings - Fork 367
Add divmod & rdivmod for Series #1397
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
|
I'll come back here after finishing #1399 |
|
Since #1399 has been resolved, I come back over here and rebased code to the master. |
Codecov Report
@@ Coverage Diff @@
## master #1397 +/- ##
=======================================
Coverage 93.88% 93.88%
=======================================
Files 36 36
Lines 8373 8375 +2
=======================================
+ Hits 7861 7863 +2
Misses 512 512
Continue to review full report at Codecov.
|
|
I think this PR is ready to get review since all related issues are resolved! :) |
This PR proposes add
Series.divmod()andSeries.rdivmod()It simply put
Series.div()andSeries.mod()together into the single tuple.