diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-12 21:54:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 21:54:42 (GMT) |
commit | e9e7d284c434768333fdfb53a3663eae74cb995a (patch) | |
tree | e9606ee5a7cf9801138448fe50aad004b05b188b /Python/pystrtod.c | |
parent | 45876a90e2663f12b90c2090ec3e48bd97841aae (diff) | |
download | cpython-e9e7d284c434768333fdfb53a3663eae74cb995a.zip cpython-e9e7d284c434768333fdfb53a3663eae74cb995a.tar.gz cpython-e9e7d284c434768333fdfb53a3663eae74cb995a.tar.bz2 |
bpo-35081: Move dtoa.h header to the internal C API (GH-18489)
Move the dtoa.h header file to the internal C API as pycore_dtoa.h:
it only contains private functions (prefixed by "_Py").
The math and cmath modules must now be compiled with the
Py_BUILD_CORE macro defined.
Diffstat (limited to 'Python/pystrtod.c')
-rw-r--r-- | Python/pystrtod.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/pystrtod.c b/Python/pystrtod.c index 94dc481..1c8202c 100644 --- a/Python/pystrtod.c +++ b/Python/pystrtod.c @@ -1,6 +1,7 @@ /* -*- Mode: C; c-file-style: "python" -*- */ #include <Python.h> +#include "pycore_dtoa.h" #include <locale.h> /* Case-insensitive string match used for nan and inf detection; t should be |