mirror of https://github.com/python/cpython
Issue #18137: Detect integer overflow on precision in float.__format__() and
complex.__format__().
This commit is contained in:
parent
da30acf50b
commit
2f084ecfe7
|
@ -312,6 +312,23 @@ class FormatTest(unittest.TestCase):
|
||||||
def test_main():
|
def test_main():
|
||||||
support.run_unittest(FormatTest)
|
support.run_unittest(FormatTest)
|
||||||
|
|
||||||
|
def test_precision(self):
|
||||||
|
INT_MAX = 2147483647
|
||||||
|
|
||||||
|
f = 1.2
|
||||||
|
self.assertEqual(format(f, ".0f"), "1")
|
||||||
|
self.assertEqual(format(f, ".3f"), "1.200")
|
||||||
|
with self.assertRaises(ValueError) as cm:
|
||||||
|
format(f, ".%sf" % (INT_MAX + 1))
|
||||||
|
self.assertEqual(str(cm.exception), "precision too big")
|
||||||
|
|
||||||
|
c = complex(f)
|
||||||
|
self.assertEqual(format(f, ".0f"), "1")
|
||||||
|
self.assertEqual(format(f, ".3f"), "1.200")
|
||||||
|
with self.assertRaises(ValueError) as cm:
|
||||||
|
format(f, ".%sf" % (INT_MAX + 1))
|
||||||
|
self.assertEqual(str(cm.exception), "precision too big")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
|
@ -12,6 +12,9 @@ What's New in Python 3.3.3 release candidate 1?
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #18137: Detect integer overflow on precision in float.__format__()
|
||||||
|
and complex.__format__().
|
||||||
|
|
||||||
- Issue #18183: Fix various unicode operations on strings with large unicode
|
- Issue #18183: Fix various unicode operations on strings with large unicode
|
||||||
codepoints.
|
codepoints.
|
||||||
|
|
||||||
|
|
|
@ -977,7 +977,7 @@ format_float_internal(PyObject *value,
|
||||||
Py_ssize_t n_total;
|
Py_ssize_t n_total;
|
||||||
int has_decimal;
|
int has_decimal;
|
||||||
double val;
|
double val;
|
||||||
Py_ssize_t precision = format->precision;
|
Py_ssize_t precision;
|
||||||
Py_ssize_t default_precision = 6;
|
Py_ssize_t default_precision = 6;
|
||||||
Py_UCS4 type = format->type;
|
Py_UCS4 type = format->type;
|
||||||
int add_pct = 0;
|
int add_pct = 0;
|
||||||
|
@ -994,6 +994,12 @@ format_float_internal(PyObject *value,
|
||||||
from a hard-code pseudo-locale */
|
from a hard-code pseudo-locale */
|
||||||
LocaleInfo locale = STATIC_LOCALE_INFO_INIT;
|
LocaleInfo locale = STATIC_LOCALE_INFO_INIT;
|
||||||
|
|
||||||
|
if (format->precision > INT_MAX) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "precision too big");
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
precision = (int)format->precision;
|
||||||
|
|
||||||
if (format->alternate)
|
if (format->alternate)
|
||||||
flags |= Py_DTSF_ALT;
|
flags |= Py_DTSF_ALT;
|
||||||
|
|
||||||
|
@ -1127,7 +1133,7 @@ format_complex_internal(PyObject *value,
|
||||||
Py_ssize_t n_im_total;
|
Py_ssize_t n_im_total;
|
||||||
int re_has_decimal;
|
int re_has_decimal;
|
||||||
int im_has_decimal;
|
int im_has_decimal;
|
||||||
Py_ssize_t precision = format->precision;
|
int precision;
|
||||||
Py_ssize_t default_precision = 6;
|
Py_ssize_t default_precision = 6;
|
||||||
Py_UCS4 type = format->type;
|
Py_UCS4 type = format->type;
|
||||||
Py_ssize_t i_re;
|
Py_ssize_t i_re;
|
||||||
|
@ -1155,6 +1161,12 @@ format_complex_internal(PyObject *value,
|
||||||
from a hard-code pseudo-locale */
|
from a hard-code pseudo-locale */
|
||||||
LocaleInfo locale = STATIC_LOCALE_INFO_INIT;
|
LocaleInfo locale = STATIC_LOCALE_INFO_INIT;
|
||||||
|
|
||||||
|
if (format->precision > INT_MAX) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "precision too big");
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
precision = (int)format->precision;
|
||||||
|
|
||||||
/* Zero padding is not allowed. */
|
/* Zero padding is not allowed. */
|
||||||
if (format->fill_char == '0') {
|
if (format->fill_char == '0') {
|
||||||
PyErr_SetString(PyExc_ValueError,
|
PyErr_SetString(PyExc_ValueError,
|
||||||
|
|
Loading…
Reference in New Issue