Kaydet (Commit) 8c3fb394 authored tarafından Eric Smith's avatar Eric Smith

Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, and…

Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, and it's not declared in any .h file.
üst f3254070
...@@ -299,17 +299,6 @@ PyFloat_AsDouble(PyObject *op) ...@@ -299,17 +299,6 @@ PyFloat_AsDouble(PyObject *op)
/* Methods */ /* Methods */
/* XXX PyFloat_AsStringEx should not be a public API function (for one
XXX thing, its signature passes a buffer without a length; for another,
XXX it isn't useful outside this file).
*/
void
PyFloat_AsStringEx(char *buf, PyFloatObject *v, int precision)
{
_PyOS_double_to_string(buf, 100, v->ob_fval, 'g', precision,
Py_DTSF_ADD_DOT_0, NULL);
}
/* Macro and helper that convert PyObject obj to a C double and store /* Macro and helper that convert PyObject obj to a C double and store
the value in dbl; this replaces the functionality of the coercion the value in dbl; this replaces the functionality of the coercion
slot function. If conversion to double raises an exception, obj is slot function. If conversion to double raises an exception, obj is
......
...@@ -306,7 +306,6 @@ EXPORTS ...@@ -306,7 +306,6 @@ EXPORTS
"PyFloat_AsReprString" "PyFloat_AsReprString"
"PyFloat_AsString" "PyFloat_AsString"
"_PyFloat_Init" "_PyFloat_Init"
"PyFloat_AsStringEx"
"PyFloat_Type" "PyFloat_Type"
; From python27_s.lib(frameobject) ; From python27_s.lib(frameobject)
......
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