-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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
DOC: fix docs after deprecation of args #42342
Conversation
@@ -5072,9 +5072,9 @@ def between(self, left, right, inclusive="both") -> Series: | |||
4 False | |||
dtype: bool | |||
|
|||
With `inclusive` set to ``False`` boundary values are excluded: | |||
With `inclusive` set to ``"neither"`` boundary values are excluded: |
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.
hmm, remind me. why did we deprecate True/False as allowable arguments?
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.
because T/F is only 2 options. 'both', 'neither' 'left' 'right' is all cases. If working towards standardising this type of arg across methods, makes sense to have all encompassing options (#40245)
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.
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.
thanks @attack68 |
@meeseeksdev backport 1.3.x |
Something went wrong ... Please have a look at my logs. |
Co-authored-by: attack68 <24256554+attack68@users.noreply.github.com>
follows up an oversigh from #40628.
False
was deprecated as an input so the example should be updated.