From 0a883a76cda8205023c52211968bcf87bd47fd6e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 14 Oct 2021 23:41:06 +0200 Subject: bpo-35134: Add Include/cpython/floatobject.h (GH-28957) Split Include/floatobject.h into sub-files: add Include/cpython/floatobject.h and Include/internal/pycore_floatobject.h. --- Objects/floatobject.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Objects/floatobject.c') diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 5a8113eca8..1be31e38d4 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -5,6 +5,7 @@ #include "Python.h" #include "pycore_dtoa.h" // _Py_dg_dtoa() +#include "pycore_floatobject.h" // _PyFloat_FormatAdvancedWriter() #include "pycore_interp.h" // _PyInterpreterState.float_state #include "pycore_long.h" // _PyLong_GetOne() #include "pycore_object.h" // _PyObject_Init() -- cgit v1.2.1