diff options
Diffstat (limited to 'Lib/test/test_float.py')
-rw-r--r-- | Lib/test/test_float.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index 844a649550..9d0c69d4c0 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -31,8 +31,6 @@ class GeneralFloatCases(unittest.TestCase): if test_support.have_unicode: self.assertEqual(float(unicode(" 3.14 ")), 3.14) self.assertEqual(float(unicode(" \u0663.\u0661\u0664 ",'raw-unicode-escape')), 3.14) - # Implementation limitation in PyFloat_FromString() - self.assertRaises(ValueError, float, unicode("1"*10000)) @test_support.run_with_locale('LC_NUMERIC', 'fr_FR', 'de_DE') def test_float_with_comma(self): |