Kaydet (Commit) e3a0ff0d authored tarafından Masayuki Yamamoto's avatar Masayuki Yamamoto Kaydeden (comit) Victor Stinner

[3.6] bpo-30854: Fix compile error when --without-threads (GH-2581) (#2583)

* bpo-30854: Fix compile error when --without-threads

* bpo-30854: fix news
(cherry picked from commit 0c311630)
üst 0884c406
Fix compile error when compiling --without-threads.
Patch by Masayuki Yamamoto.
......@@ -621,7 +621,7 @@ Py_MakePendingCalls(void)
arg = pendingcalls[i].arg;
pendingfirst = (i + 1) % NPENDINGCALLS;
if (func(arg) < 0) {
goto error:
goto error;
}
}
busy = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment