Lines Matching refs:places
923 def assertAlmostEqual(self, first, second, places=None, msg=None, argument
940 if delta is not None and places is not None:
954 if places is None:
955 places = 7
957 if round(diff, places) == 0:
963 places,
968 def assertNotAlmostEqual(self, first, second, places=None, msg=None, argument
980 if delta is not None and places is not None:
992 if places is None:
993 places = 7
994 if not (first == second) and round(diff, places) != 0:
998 places)