File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
187
187
-i " pandas.plotting.lag_plot RT03,SA01" \
188
188
-i " pandas.plotting.scatter_matrix PR07,SA01" \
189
189
-i " pandas.set_eng_float_format RT03,SA01" \
190
- -i " pandas.testing.assert_extension_array_equal SA01" \
191
190
-i " pandas.tseries.offsets.BDay PR02,SA01" \
192
191
-i " pandas.tseries.offsets.BQuarterBegin.is_on_offset GL08" \
193
192
-i " pandas.tseries.offsets.BQuarterBegin.n GL08" \
Original file line number Diff line number Diff line change @@ -701,6 +701,10 @@ def assert_extension_array_equal(
701
701
"""
702
702
Check that left and right ExtensionArrays are equal.
703
703
704
+ This method compares two ``ExtensionArray`` instances for equality,
705
+ including checks for missing values, the dtype of the arrays, and
706
+ the exactness of the comparison (or tolerance when comparing floats).
707
+
704
708
Parameters
705
709
----------
706
710
left, right : ExtensionArray
@@ -726,6 +730,12 @@ def assert_extension_array_equal(
726
730
727
731
.. versionadded:: 2.0.0
728
732
733
+ See Also
734
+ --------
735
+ testing.assert_series_equal : Check that left and right ``Series`` are equal.
736
+ testing.assert_frame_equal : Check that left and right ``DataFrame`` are equal.
737
+ testing.assert_index_equal : Check that left and right ``Index`` are equal.
738
+
729
739
Notes
730
740
-----
731
741
Missing values are checked separately from valid values.
You can’t perform that action at this time.
0 commit comments