Continue removing _PyOS_double_to_string, as mentioned in issue 7117.
This commit is contained in:
parent
cfaf79c56e
commit
b05d3be2f1
|
@ -1170,15 +1170,29 @@ save_float(Picklerobject *self, PyObject *args)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
char c_str[250];
|
int result = -1;
|
||||||
c_str[0] = FLOAT;
|
char *buf = NULL;
|
||||||
_PyOS_double_to_string(c_str + 1, sizeof(c_str) - 2, x, 'g',
|
char op = FLOAT;
|
||||||
17, 0, NULL);
|
|
||||||
/* Extend the formatted string with a newline character */
|
|
||||||
strcat(c_str, "\n");
|
|
||||||
|
|
||||||
if (self->write_func(self, c_str, strlen(c_str)) < 0)
|
if (self->write_func(self, &op, 1) < 0)
|
||||||
return -1;
|
goto done;
|
||||||
|
|
||||||
|
buf = PyOS_double_to_string(x, 'g', 17, 0, NULL);
|
||||||
|
if (!buf) {
|
||||||
|
PyErr_NoMemory();
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (self->write_func(self, buf, strlen(buf)) < 0)
|
||||||
|
goto done;
|
||||||
|
|
||||||
|
if (self->write_func(self, "\n", 1) < 0)
|
||||||
|
goto done;
|
||||||
|
|
||||||
|
result = 0;
|
||||||
|
done:
|
||||||
|
PyMem_Free(buf);
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue