From 41ed8a7e4a1124c8e4dedef1efccf09e09b2c5ba Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Fri, 25 Jun 2021 11:32:22 +0100 Subject: [PATCH] Backport PR #42218: DOC: follow-up to #40628 --- pandas/core/series.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/core/series.py b/pandas/core/series.py index c1722718364d3..800d2d736013a 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -4983,6 +4983,7 @@ def between(self, left, right, inclusive="both") -> Series: Right boundary. inclusive : {"both", "neither", "left", "right"} Include boundaries. Whether to set each bound as closed or open. + .. versionchanged:: 1.3.0 Returns