Kaydet (Commit) f3e4b62d authored tarafından Mark Dickinson's avatar Mark Dickinson

Issue #18659: Backed out changeset cfd875bcbe41 after buildbot failures.

üst a9e626f7
...@@ -327,6 +327,10 @@ class FormatTest(unittest.TestCase): ...@@ -327,6 +327,10 @@ class FormatTest(unittest.TestCase):
self.assertIs(text % (), text) self.assertIs(text % (), text)
self.assertIs(text.format(), text) self.assertIs(text.format(), text)
def test_main():
support.run_unittest(FormatTest)
def test_precision(self): def test_precision(self):
INT_MAX = 2147483647 INT_MAX = 2147483647
...@@ -338,10 +342,10 @@ class FormatTest(unittest.TestCase): ...@@ -338,10 +342,10 @@ class FormatTest(unittest.TestCase):
self.assertEqual(str(cm.exception), "precision too big") self.assertEqual(str(cm.exception), "precision too big")
c = complex(f) c = complex(f)
self.assertEqual(format(c, ".0f"), "1+0j") self.assertEqual(format(f, ".0f"), "1")
self.assertEqual(format(c, ".3f"), "1.200+0.000j") self.assertEqual(format(f, ".3f"), "1.200")
with self.assertRaises(ValueError) as cm: with self.assertRaises(ValueError) as cm:
format(c, ".%sf" % (INT_MAX + 1)) format(f, ".%sf" % (INT_MAX + 1))
self.assertEqual(str(cm.exception), "precision too big") self.assertEqual(str(cm.exception), "precision too big")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment