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 /Makefile.pre.in | |
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 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index e788e59..7560d17 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1734,6 +1734,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_code.h \ $(srcdir)/Include/internal/pycore_codecs.h \ $(srcdir)/Include/internal/pycore_compile.h \ + $(srcdir)/Include/internal/pycore_complexobject.h \ $(srcdir)/Include/internal/pycore_condvar.h \ $(srcdir)/Include/internal/pycore_context.h \ $(srcdir)/Include/internal/pycore_dict.h \ |