diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-02 21:19:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 21:19:59 (GMT) |
commit | c38c66687f148991031914f12ebd5c42d6e26b5b (patch) | |
tree | ecd745663c43bb4414930f4a9ffea668d6d726ed /Objects/complexobject.c | |
parent | dbefa88b27ee1f124f782363b139aee3f1ccf590 (diff) | |
download | cpython-c38c66687f148991031914f12ebd5c42d6e26b5b.zip cpython-c38c66687f148991031914f12ebd5c42d6e26b5b.tar.gz cpython-c38c66687f148991031914f12ebd5c42d6e26b5b.tar.bz2 |
gh-106320: Add pycore_complexobject.h header file (#106339)
Add internal pycore_complexobject.h header file.
Move _Py_c_xxx() functions and _PyComplex_FormatAdvancedWriter()
function to this new header file.
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r-- | Objects/complexobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index aee03dd..12968a6 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -7,6 +7,7 @@ #include "Python.h" #include "pycore_call.h" // _PyObject_CallNoArgs() +#include "pycore_complexobject.h" // _PyComplex_FormatAdvancedWriter() #include "pycore_long.h" // _PyLong_GetZero() #include "pycore_object.h" // _PyObject_Init() #include "pycore_pymath.h" // _Py_ADJUST_ERANGE2() |