diff options
Diffstat (limited to 'Lib/test/test_cmath.py')
-rw-r--r-- | Lib/test/test_cmath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_cmath.py b/Lib/test/test_cmath.py index 692ea36..4db6b2b 100644 --- a/Lib/test/test_cmath.py +++ b/Lib/test/test_cmath.py @@ -253,7 +253,7 @@ class CMathTests(unittest.TestCase): self.assertRaises(SomeException, f, MyComplexExceptionOS()) def test_input_type(self): - # ints and longs should be acceptable inputs to all cmath + # ints should be acceptable inputs to all cmath # functions, by virtue of providing a __float__ method for f in self.test_functions: for arg in [2, 2.]: |