summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>2017-07-05 09:24:46 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-07-05 09:24:46 (GMT)
commite3a0ff0d76b9e7a994afa7f2c54b19a63f1bb57d (patch)
tree3a83c01d1f08ce342abd6bb0587746dfc1b8d3bf /Python
parent0884c40603be59cc40dd2af510a4c008dfac85f2 (diff)
downloadcpython-e3a0ff0d76b9e7a994afa7f2c54b19a63f1bb57d.zip
cpython-e3a0ff0d76b9e7a994afa7f2c54b19a63f1bb57d.tar.gz
cpython-e3a0ff0d76b9e7a994afa7f2c54b19a63f1bb57d.tar.bz2
[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 0c3116309307ad2c7f8e2d2096612f4ab33cbb62)
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index bf9103d..770dfcb 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -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;