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

Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c…

Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round.
üst 7a556846
...@@ -1086,6 +1086,7 @@ _Py_double_round(double x, int ndigits) { ...@@ -1086,6 +1086,7 @@ _Py_double_round(double x, int ndigits) {
char *buf, *buf_end, shortbuf[100], *mybuf=shortbuf; char *buf, *buf_end, shortbuf[100], *mybuf=shortbuf;
int decpt, sign, val, halfway_case; int decpt, sign, val, halfway_case;
PyObject *result = NULL; PyObject *result = NULL;
_Py_SET_53BIT_PRECISION_HEADER;
/* The basic idea is very simple: convert and round the double to a /* The basic idea is very simple: convert and round the double to a
decimal string using _Py_dg_dtoa, then convert that decimal string decimal string using _Py_dg_dtoa, then convert that decimal string
...@@ -1142,7 +1143,9 @@ _Py_double_round(double x, int ndigits) { ...@@ -1142,7 +1143,9 @@ _Py_double_round(double x, int ndigits) {
halfway_case = 0; halfway_case = 0;
/* round to a decimal string; use an extra place for halfway case */ /* round to a decimal string; use an extra place for halfway case */
_Py_SET_53BIT_PRECISION_START;
buf = _Py_dg_dtoa(x, 3, ndigits+halfway_case, &decpt, &sign, &buf_end); buf = _Py_dg_dtoa(x, 3, ndigits+halfway_case, &decpt, &sign, &buf_end);
_Py_SET_53BIT_PRECISION_END;
if (buf == NULL) { if (buf == NULL) {
PyErr_NoMemory(); PyErr_NoMemory();
return NULL; return NULL;
...@@ -1186,7 +1189,9 @@ _Py_double_round(double x, int ndigits) { ...@@ -1186,7 +1189,9 @@ _Py_double_round(double x, int ndigits) {
/* and convert the resulting string back to a double */ /* and convert the resulting string back to a double */
errno = 0; errno = 0;
_Py_SET_53BIT_PRECISION_START;
rounded = _Py_dg_strtod(mybuf, NULL); rounded = _Py_dg_strtod(mybuf, NULL);
_Py_SET_53BIT_PRECISION_END;
if (errno == ERANGE && fabs(rounded) >= 1.) if (errno == ERANGE && fabs(rounded) >= 1.)
PyErr_SetString(PyExc_OverflowError, PyErr_SetString(PyExc_OverflowError,
"rounded value too large to represent"); "rounded value too large to represent");
......
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