From f47180600606dcabe002d3bf7a109cc05ce4ee11 Mon Sep 17 00:00:00 2001 From: Samesh Lakhotia Date: Tue, 1 Oct 2019 19:04:07 +0530 Subject: [PATCH] DOC: Series.between() can take arguments that are Series, not just scalars modified the docs of Series.between() to reflect that it can take any list like object closes #28435 --- pandas/core/series.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/series.py b/pandas/core/series.py index c87e371354f63..48f10bbfa8c9e 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -4410,9 +4410,9 @@ def between(self, left, right, inclusive=True): Parameters ---------- - left : scalar + left : scalar or list-like Left boundary. - right : scalar + right : scalar or list-like Right boundary. inclusive : bool, default True Include boundaries.