@@ -225,7 +225,7 @@ def assert_almost_equal(left, right, check_dtype="equiv",
225
225
----------
226
226
left : object
227
227
right : object
228
- check_dtype : bool / string {'equiv'}, default False
228
+ check_dtype : bool / string {'equiv'}, default 'equiv'
229
229
Check dtype if both a and b are the same type. If 'equiv' is passed in,
230
230
then `RangeIndex` and `Int64Index` are also considered equivalent
231
231
when doing type checking.
@@ -787,7 +787,7 @@ def assert_index_equal(left, right, exact='equiv', check_names=True,
787
787
----------
788
788
left : Index
789
789
right : Index
790
- exact : bool / string {'equiv'}, default False
790
+ exact : bool / string {'equiv'}, default 'equiv'
791
791
Whether to check the Index class, dtype and inferred_type
792
792
are identical. If 'equiv', then RangeIndex can be substituted for
793
793
Int64Index as well.
@@ -1034,7 +1034,7 @@ def assert_interval_array_equal(left, right, exact='equiv',
1034
1034
Whether to check the Index class, dtype and inferred_type
1035
1035
are identical. If 'equiv', then RangeIndex can be substituted for
1036
1036
Int64Index as well.
1037
- obj : str, default 'Categorical '
1037
+ obj : str, default 'IntervalArray '
1038
1038
Specify object name being compared, internally used to show appropriate
1039
1039
assertion message
1040
1040
"""
@@ -1326,12 +1326,13 @@ def assert_frame_equal(left, right, check_dtype=True,
1326
1326
Second DataFrame to compare.
1327
1327
check_dtype : bool, default True
1328
1328
Whether to check the DataFrame dtype is identical.
1329
- check_index_type : {'equiv'} or bool , default 'equiv'
1329
+ check_index_type : bool / string {'equiv'}, default 'equiv'
1330
1330
Whether to check the Index class, dtype and inferred_type
1331
1331
are identical.
1332
- check_column_type : {'equiv'} or bool , default 'equiv'
1332
+ check_column_type : bool / string {'equiv'}, default 'equiv'
1333
1333
Whether to check the columns class, dtype and inferred_type
1334
- are identical.
1334
+ are identical. Is passed as the ``exact`` argument of
1335
+ :func:`assert_index_equal`.
1335
1336
check_frame_type : bool, default True
1336
1337
Whether to check the DataFrame class is identical.
1337
1338
check_less_precise : bool or int, default False
0 commit comments