From 9594942716a8f9c557b85d31751753d89cd7cebf Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 27 Aug 2013 19:40:23 +0300 Subject: Issue #18783: Removed existing mentions of Python long type in docstrings, error messages and comments. --- Lib/test/test_cmath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_cmath.py') diff --git a/Lib/test/test_cmath.py b/Lib/test/test_cmath.py index 692ea361f4..4db6b2b991 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.]: -- cgit v1.2.1