File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -487,7 +487,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
487
487
-i " pandas.set_eng_float_format RT03,SA01" \
488
488
-i " pandas.show_versions SA01" \
489
489
-i " pandas.testing.assert_extension_array_equal SA01" \
490
- -i " pandas.testing.assert_series_equal PR07,SA01" \
491
490
-i " pandas.tseries.offsets.BDay PR02,SA01" \
492
491
-i " pandas.tseries.offsets.BQuarterBegin PR02" \
493
492
-i " pandas.tseries.offsets.BQuarterBegin.freqstr SA01" \
Original file line number Diff line number Diff line change @@ -857,7 +857,9 @@ def assert_series_equal(
857
857
Parameters
858
858
----------
859
859
left : Series
860
+ First Series to compare.
860
861
right : Series
862
+ Second Series to compare.
861
863
check_dtype : bool, default True
862
864
Whether to check the Series dtype is identical.
863
865
check_index_type : bool or {'equiv'}, default 'equiv'
@@ -908,6 +910,11 @@ def assert_series_equal(
908
910
909
911
.. versionadded:: 1.5.0
910
912
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
+
911
918
Examples
912
919
--------
913
920
>>> from pandas import testing as tm
You can’t perform that action at this time.
0 commit comments