diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-03 08:23:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 08:23:43 (GMT) |
commit | 5ccbbe5bb9a659fa8f2fe551428c84cc14015f44 (patch) | |
tree | dda828881a98a880d128b97c1072fc08b7b262b1 /Include/internal/pycore_floatobject.h | |
parent | d65b783b6966d233467a48ef633afb4aff9d5df8 (diff) | |
download | cpython-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.h | 2 |
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 *); |