Lines Matching refs:places
856 def assertAlmostEqual(self, first, second, places=None, msg=None, argument
873 if delta is not None and places is not None:
887 if places is None:
888 places = 7
890 if round(diff, places) == 0:
896 places,
901 def assertNotAlmostEqual(self, first, second, places=None, msg=None, argument
913 if delta is not None and places is not None:
925 if places is None:
926 places = 7
927 if not (first == second) and round(diff, places) != 0:
931 places)