Skip to content

Commit

Permalink
Backport PR pandas-dev#42342: DOC: fix docs after deprecation of args (
Browse files Browse the repository at this point in the history
…pandas-dev#42363)

Co-authored-by: attack68 <24256554+attack68@users.noreply.github.com>
  • Loading branch information
meeseeksmachine and attack68 authored Jul 4, 2021
1 parent 0e3a719 commit 263cc6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -5074,9 +5074,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:
>>> s.between(1, 4, inclusive=False)
>>> s.between(1, 4, inclusive="neither")
0 True
1 False
2 False
Expand Down

0 comments on commit 263cc6c

Please sign in to comment.