summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_floatobject.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-03 08:23:43 (GMT)
committerGitHub <noreply@github.com>2023-07-03 08:23:43 (GMT)
commit5ccbbe5bb9a659fa8f2fe551428c84cc14015f44 (patch)
treedda828881a98a880d128b97c1072fc08b7b262b1 /Include/internal/pycore_floatobject.h
parentd65b783b6966d233467a48ef633afb4aff9d5df8 (diff)
downloadcpython-5ccbbe5bb9a659fa8f2fe551428c84cc14015f44.zip
cpython-5ccbbe5bb9a659fa8f2fe551428c84cc14015f44.tar.gz
cpython-5ccbbe5bb9a659fa8f2fe551428c84cc14015f44.tar.bz2
gh-106320: Move _PyUnicodeWriter to the internal C API (#106342)
Move also _PyUnicode_FormatAdvancedWriter(). CJK codecs and multibytecodec.c now define the Py_BUILD_CORE_MODULE macro.
Diffstat (limited to 'Include/internal/pycore_floatobject.h')
-rw-r--r--Include/internal/pycore_floatobject.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_floatobject.h b/Include/internal/pycore_floatobject.h
index 27c63bc..6abba04 100644
--- a/Include/internal/pycore_floatobject.h
+++ b/Include/internal/pycore_floatobject.h
@@ -9,6 +9,8 @@ extern "C" {
#endif
+#include "pycore_unicodeobject.h" // _PyUnicodeWriter
+
/* runtime lifecycle */
extern void _PyFloat_InitState(PyInterpreterState *);