]> granicus.if.org Git - python/commitdiff
Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, and it...
authorEric Smith <eric@trueblade.com>
Sat, 24 Oct 2009 19:50:44 +0000 (19:50 +0000)
committerEric Smith <eric@trueblade.com>
Sat, 24 Oct 2009 19:50:44 +0000 (19:50 +0000)
Objects/floatobject.c
PC/os2emx/python27.def

index 745fe542265f86144d63680808f25e3473b1a093..73d7903805d95cac406b282f2c68dcb16ecff54c 100644 (file)
@@ -299,17 +299,6 @@ PyFloat_AsDouble(PyObject *op)
 
 /* 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
    the value in dbl; this replaces the functionality of the coercion
    slot function.  If conversion to double raises an exception, obj is
index 1a258e793538885c804b8d402b4fe134cc192d93..7b728a99ca97dcdc63d5b58a5cb49377def42e67 100644 (file)
@@ -306,7 +306,6 @@ EXPORTS
   "PyFloat_AsReprString"
   "PyFloat_AsString"
   "_PyFloat_Init"
-  "PyFloat_AsStringEx"
   "PyFloat_Type"
 
 ; From python27_s.lib(frameobject)