summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-10-14 21:41:06 (GMT)
committerGitHub <noreply@github.com>2021-10-14 21:41:06 (GMT)
commit0a883a76cda8205023c52211968bcf87bd47fd6e (patch)
tree3a540308c72262afb3a750f47df6713410a99d90 /Python
parent79cf20e48d0b5d69d9fac2a0204b5ac2c366066a (diff)
downloadcpython-0a883a76cda8205023c52211968bcf87bd47fd6e.zip
cpython-0a883a76cda8205023c52211968bcf87bd47fd6e.tar.gz
cpython-0a883a76cda8205023c52211968bcf87bd47fd6e.tar.bz2
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 'Python')
-rw-r--r--Python/marshal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index c8a48a5..e9ad566 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -11,6 +11,7 @@
#include "Python.h"
#include "pycore_call.h" // _PyObject_CallNoArgs()
#include "pycore_code.h" // _PyCode_New()
+#include "pycore_floatobject.h" // _PyFloat_Pack8()
#include "pycore_hashtable.h" // _Py_hashtable_t
#include "longintrepr.h"
#include "code.h"