diff options
Diffstat (limited to 'Modules/_json.c')
| -rw-r--r-- | Modules/_json.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/_json.c b/Modules/_json.c index 54fc90c..f1da230 100644 --- a/Modules/_json.c +++ b/Modules/_json.c @@ -1,3 +1,10 @@ + +/* Core extension modules are built-in on some platforms (e.g. Windows). */ +#ifdef Py_BUILD_CORE +#define Py_BUILD_CORE_MODULE +#undef Py_BUILD_CORE +#endif + #include "Python.h" #include "structmember.h" #include "accu.h" |
