From df6a7ba885aded5bfd8446570e1739deaec074ca Mon Sep 17 00:00:00 2001 From: David <63334933+DavidDeLord@users.noreply.github.com> Date: Sun, 4 Jul 2021 17:25:03 -0700 Subject: [PATCH 1/2] Fix Formatting Issue Escape the backslashes, so they appear in the generated doc. --- pandas/core/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/series.py b/pandas/core/series.py index a0c974428d875..9b39ca45dfdfd 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -201,7 +201,7 @@ class Series(base.IndexOpsMixin, generic.NDFrame): methods from ndarray have been overridden to automatically exclude missing data (currently represented as NaN). - Operations between Series (+, -, /, *, **) align values based on their + Operations between Series (+, -, /, \*, \*\*) align values based on their associated index values-- they need not be the same length. The result index will be the sorted union of the two indexes. From 2db06f9ec0372dfd01bd7d9a1318e55cf1a58f36 Mon Sep 17 00:00:00 2001 From: David <63334933+DavidDeLord@users.noreply.github.com> Date: Wed, 7 Jul 2021 10:04:31 -0700 Subject: [PATCH 2/2] Signed-off-by: David Signed-off-by: David <63334933+DavidDeLord@users.noreply.github.com> --- pandas/core/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/series.py b/pandas/core/series.py index d79773ef5bce1..9eab934d7db83 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -201,7 +201,7 @@ class Series(base.IndexOpsMixin, generic.NDFrame): methods from ndarray have been overridden to automatically exclude missing data (currently represented as NaN). - Operations between Series (+, -, /, \*, \*\*) align values based on their + Operations between Series (+, -, /, \\*, \\*\\*) align values based on their associated index values-- they need not be the same length. The result index will be the sorted union of the two indexes.