Skip to content

Commit 8643b2f

Browse files
DOC: fix PR07,SA01 for pandas.testing.assert_series_equal (#58888)
1 parent 1b48cef commit 8643b2f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
487487
-i "pandas.set_eng_float_format RT03,SA01" \
488488
-i "pandas.show_versions SA01" \
489489
-i "pandas.testing.assert_extension_array_equal SA01" \
490-
-i "pandas.testing.assert_series_equal PR07,SA01" \
491490
-i "pandas.tseries.offsets.BDay PR02,SA01" \
492491
-i "pandas.tseries.offsets.BQuarterBegin PR02" \
493492
-i "pandas.tseries.offsets.BQuarterBegin.freqstr SA01" \

pandas/_testing/asserters.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,9 @@ def assert_series_equal(
857857
Parameters
858858
----------
859859
left : Series
860+
First Series to compare.
860861
right : Series
862+
Second Series to compare.
861863
check_dtype : bool, default True
862864
Whether to check the Series dtype is identical.
863865
check_index_type : bool or {'equiv'}, default 'equiv'
@@ -908,6 +910,11 @@ def assert_series_equal(
908910
909911
.. versionadded:: 1.5.0
910912
913+
See Also
914+
--------
915+
testing.assert_index_equal : Check that two Indexes are equal.
916+
testing.assert_frame_equal : Check that two DataFrames are equal.
917+
911918
Examples
912919
--------
913920
>>> from pandas import testing as tm

0 commit comments

Comments
 (0)