Skip to content

Commit e3a0ff0

Browse files
ma8mavstinner
authored andcommitted
[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 0c31163)
1 parent 0884c40 commit e3a0ff0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fix compile error when compiling --without-threads.
2+
Patch by Masayuki Yamamoto.

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ Py_MakePendingCalls(void)
621621
arg = pendingcalls[i].arg;
622622
pendingfirst = (i + 1) % NPENDINGCALLS;
623623
if (func(arg) < 0) {
624-
goto error:
624+
goto error;
625625
}
626626
}
627627
busy = 0;

0 commit comments

Comments
 (0)