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 @@ -492,7 +492,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
492
492
-i " pandas.show_versions SA01" \
493
493
-i " pandas.test SA01" \
494
494
-i " pandas.testing.assert_extension_array_equal SA01" \
495
- -i " pandas.testing.assert_index_equal PR07,SA01" \
496
495
-i " pandas.testing.assert_series_equal PR07,SA01" \
497
496
-i " pandas.tseries.offsets.BDay PR02,SA01" \
498
497
-i " pandas.tseries.offsets.BQuarterBegin PR02" \
Original file line number Diff line number Diff line change @@ -196,7 +196,9 @@ def assert_index_equal(
196
196
Parameters
197
197
----------
198
198
left : Index
199
+ The first index to compare.
199
200
right : Index
201
+ The second index to compare.
200
202
exact : bool or {'equiv'}, default 'equiv'
201
203
Whether to check the Index class, dtype and inferred_type
202
204
are identical. If 'equiv', then RangeIndex can be substituted for
@@ -219,6 +221,11 @@ def assert_index_equal(
219
221
Specify object name being compared, internally used to show appropriate
220
222
assertion message.
221
223
224
+ See Also
225
+ --------
226
+ testing.assert_series_equal : Check that two Series are equal.
227
+ testing.assert_frame_equal : Check that two DataFrames are equal.
228
+
222
229
Examples
223
230
--------
224
231
>>> from pandas import testing as tm
You can’t perform that action at this time.
0 commit comments