diff options
| author | Victor Stinner <vstinner@python.org> | 2020-02-12 22:54:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-12 22:54:42 +0100 |
| commit | e9e7d284c434768333fdfb53a3663eae74cb995a (patch) | |
| tree | e9606ee5a7cf9801138448fe50aad004b05b188b /Modules | |
| parent | 45876a90e2663f12b90c2090ec3e48bd97841aae (diff) | |
| download | cpython-git-e9e7d284c434768333fdfb53a3663eae74cb995a.tar.gz | |
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 'Modules')
| -rw-r--r-- | Modules/Setup | 4 | ||||
| -rw-r--r-- | Modules/cmathmodule.c | 1 | ||||
| -rw-r--r-- | Modules/mathmodule.c | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/Modules/Setup b/Modules/Setup index 983fa014ec..40266a192b 100644 --- a/Modules/Setup +++ b/Modules/Setup @@ -167,8 +167,8 @@ _symtable symtablemodule.c # Modules that should always be present (non UNIX dependent): #array arraymodule.c # array objects -#cmath cmathmodule.c _math.c # -lm # complex math library functions -#math mathmodule.c _math.c # -lm # math library functions, e.g. sin() +#cmath cmathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # complex math library functions +#math mathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # math library functions, e.g. sin() #_contextvars _contextvarsmodule.c # Context Variables #_struct _struct.c # binary structure packing/unpacking #_weakref _weakref.c # basic weak reference support diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 8b21decfa5..5eac4b4940 100644 --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -3,6 +3,7 @@ /* much code borrowed from mathmodule.c */ #include "Python.h" +#include "pycore_dtoa.h" #include "_math.h" /* we need DBL_MAX, DBL_MIN, DBL_EPSILON, DBL_MANT_DIG and FLT_RADIX from float.h. We assume that FLT_RADIX is either 2 or 16. */ diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index f012b51d86..309f229159 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -53,6 +53,7 @@ raised for division by zero and mod by zero. */ #include "Python.h" +#include "pycore_dtoa.h" #include "_math.h" #include "clinic/mathmodule.c.h" |
