We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6628e85 commit 0f97249Copy full SHA for 0f97249
Modules/_json.c
@@ -1,4 +1,7 @@
1
#include "Python.h"
2
+#ifdef Py_BUILD_CORE /* _json is built-in on Windows. */
3
+#include "internal/pystate.h"
4
+#endif
5
#include "structmember.h"
6
#include "accu.h"
7
Modules/_pickle.c
+#ifdef Py_BUILD_CORE /* _pickle is built-in on Windows. */
PyDoc_STRVAR(pickle_module_doc,
0 commit comments