From bb28285ea2f01e97a26bc595d49da43fbee62913 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sat, 24 Oct 2009 12:13:30 +0000 Subject: Issue #7117: Prepare for backport of py3k float repr. Add the Python/dtoa.c file containing the main algorithms; add corresponding include file and include in Python.h; include license information for Python/dtoa.c; add dtoa.c and dtoa.h to Makefile. --- Include/Python.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index 9e140a5c64..eac9f48ddf 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -137,6 +137,7 @@ #include "pyctype.h" #include "pystrtod.h" #include "pystrcmp.h" +#include "dtoa.h" /* _Py_Mangle is defined in compile.c */ PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name); -- cgit v1.2.1