From 9faed3582aa345e46003ed2015b2e76177fac265 Mon Sep 17 00:00:00 2001 From: carbotaniuman <41451839+carbotaniuman@users.noreply.github.com> Date: Mon, 21 Dec 2020 22:29:15 -0600 Subject: [PATCH] Address review --- Lib/test/test_math.py | 1 - vm/src/stdlib/math.rs | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 1c21218a3..b318076d2 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -1557,7 +1557,6 @@ class MathTests(unittest.TestCase): # def test_nan_constant(self): # self.assertTrue(math.isnan(math.nan)) - # TODO: RUSTPYTHON @requires_IEEE_754 def test_inf_constant(self): self.assertTrue(math.isinf(math.inf)) diff --git a/vm/src/stdlib/math.rs b/vm/src/stdlib/math.rs index a5f569ca4..ecaae2776 100644 --- a/vm/src/stdlib/math.rs +++ b/vm/src/stdlib/math.rs @@ -388,9 +388,7 @@ fn math_fsum(iter: PyIterable, vm: &VirtualMachine) -> PyResult