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 7fec939 commit a096813Copy full SHA for a096813
Modules/_testcapimodule.c
@@ -3324,6 +3324,10 @@ _testcapi_exec(PyObject *m)
3324
PyModule_AddObject(m, "INT64_MAX", PyLong_FromInt64(INT64_MAX));
3325
PyModule_AddObject(m, "UINT64_MAX", PyLong_FromUInt64(UINT64_MAX));
3326
3327
+ if (PyModule_AddIntMacro(m, _Py_STACK_GROWS_DOWN)) {
3328
+ return -1;
3329
+ }
3330
+
3331
if (PyModule_AddIntMacro(m, Py_single_input)) {
3332
return -1;
3333
}
0 commit comments