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 9215b43 commit 1065273Copy full SHA for 1065273
Modules/_testinternalcapi.c
@@ -3012,7 +3012,7 @@ module_exec(PyObject *module)
3012
unsigned long threshold = interp->opt_config.jump_backward_initial_value + 2;
3013
if (PyModule_Add(module, "TIER2_THRESHOLD",
3014
// + 1 more due to one loop spent on tracing.
3015
- PyLong_FromLong(threshold)) < 0) {
+ PyLong_FromUnsignedLong(threshold)) < 0) {
3016
return 1;
3017
}
3018
0 commit comments