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/stringlib/unicode_format.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Objects/stringlib/unicode_format.h') diff --git a/Objects/stringlib/unicode_format.h b/Objects/stringlib/unicode_format.h index 7152ec6ebe..a4eea7b919 100644 --- a/Objects/stringlib/unicode_format.h +++ b/Objects/stringlib/unicode_format.h @@ -2,6 +2,8 @@ unicode_format.h -- implementation of str.format(). */ +#include "pycore_floatobject.h" // _PyFloat_FormatAdvancedWriter() + /************************************************************************/ /*********** Global data structures and forward declarations *********/ /************************************************************************/ -- cgit v1.2.1