Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pandas/util/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,12 @@ def assert_frame_equal(left, right, check_dtype=True,
5 digits (False) or 3 digits (True) after decimal points are compared.
If int, then specify the digits to compare
check_names : bool, default True
Whether to check the Index names attribute.
Whether to check that the `names` attribute for both the `index`
and `column` attributes of the DataFrame is identical, i.e.

* left.index.names == right.index.names
* left.columns.names == right.columns.names

by_blocks : bool, default False
Specify how to compare internal data. If False, compare by columns.
If True, compare by blocks.
Expand Down