mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting.
This commit is contained in:
parent
579d5cd643
commit
fb90c0934c
5 changed files with 45 additions and 20 deletions
|
@ -906,6 +906,21 @@ class UnicodeTest(string_tests.CommonTest,
|
|||
self.assertRaises(ValueError, '{}'.format_map, 'a')
|
||||
self.assertRaises(ValueError, '{a} {}'.format_map, {"a" : 2, "b" : 1})
|
||||
|
||||
def test_format_huge_precision(self):
|
||||
format_string = ".{}f".format(sys.maxsize + 1)
|
||||
with self.assertRaises(ValueError):
|
||||
result = format(2.34, format_string)
|
||||
|
||||
def test_format_huge_width(self):
|
||||
format_string = "{}f".format(sys.maxsize + 1)
|
||||
with self.assertRaises(ValueError):
|
||||
result = format(2.34, format_string)
|
||||
|
||||
def test_format_huge_item_number(self):
|
||||
format_string = "{{{}:.6f}}".format(sys.maxsize + 1)
|
||||
with self.assertRaises(ValueError):
|
||||
result = format_string.format(2.34)
|
||||
|
||||
def test_format_auto_numbering(self):
|
||||
class C:
|
||||
def __init__(self, x=100):
|
||||
|
@ -990,6 +1005,18 @@ class UnicodeTest(string_tests.CommonTest,
|
|||
self.assertEqual('%f' % INF, 'inf')
|
||||
self.assertEqual('%F' % INF, 'INF')
|
||||
|
||||
@support.cpython_only
|
||||
def test_formatting_huge_precision(self):
|
||||
from _testcapi import INT_MAX
|
||||
format_string = "%.{}f".format(INT_MAX + 1)
|
||||
with self.assertRaises(ValueError):
|
||||
result = format_string % 2.34
|
||||
|
||||
def test_formatting_huge_width(self):
|
||||
format_string = "%{}f".format(sys.maxsize + 1)
|
||||
with self.assertRaises(ValueError):
|
||||
result = format_string % 2.34
|
||||
|
||||
def test_startswith_endswith_errors(self):
|
||||
for meth in ('foo'.startswith, 'foo'.endswith):
|
||||
with self.assertRaises(TypeError) as cm:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue