summaryrefslogtreecommitdiff
path: root/Modules/arraymodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-10-14 23:41:06 +0200
committerGitHub <noreply@github.com>2021-10-14 23:41:06 +0200
commit0a883a76cda8205023c52211968bcf87bd47fd6e (patch)
tree3a540308c72262afb3a750f47df6713410a99d90 /Modules/arraymodule.c
parent79cf20e48d0b5d69d9fac2a0204b5ac2c366066a (diff)
downloadcpython-git-0a883a76cda8205023c52211968bcf87bd47fd6e.tar.gz
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.
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r--Modules/arraymodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index c9b6a92c22..5e57fe1160 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -5,6 +5,7 @@
#define PY_SSIZE_T_CLEAN
#include "Python.h"
+#include "pycore_floatobject.h" // _PyFloat_Unpack4()
#include "pycore_moduleobject.h" // _PyModule_GetState()
#include "structmember.h" // PyMemberDef
#include <stddef.h> // offsetof()