diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-14 21:41:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 21:41:06 (GMT) |
commit | 0a883a76cda8205023c52211968bcf87bd47fd6e (patch) | |
tree | 3a540308c72262afb3a750f47df6713410a99d90 /Objects/floatobject.c | |
parent | 79cf20e48d0b5d69d9fac2a0204b5ac2c366066a (diff) | |
download | cpython-0a883a76cda8205023c52211968bcf87bd47fd6e.zip cpython-0a883a76cda8205023c52211968bcf87bd47fd6e.tar.gz cpython-0a883a76cda8205023c52211968bcf87bd47fd6e.tar.bz2 |
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.
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r-- | Objects/floatobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 5a8113e..1be31e3 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() |