From 6d98fe471e4e8a9b4f9a696925dec7f0899e68f4 Mon Sep 17 00:00:00 2001 From: Andreas Winkler Date: Sat, 6 May 2017 09:42:54 +0200 Subject: [PATCH] DOC: tm.assert_almost_equal() check_exact param defaults to False --- pandas/util/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/util/testing.py b/pandas/util/testing.py index f6b572cdf7179..4b610c505c574 100644 --- a/pandas/util/testing.py +++ b/pandas/util/testing.py @@ -127,7 +127,7 @@ def assert_almost_equal(left, right, check_exact=False, ---------- left : object right : object - check_exact : bool, default True + check_exact : bool, default False Whether to compare number exactly. check_dtype: bool, default True check dtype if both a and b are the same type