summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>2017-07-05 08:39:17 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-07-05 08:39:17 (GMT)
commit0c3116309307ad2c7f8e2d2096612f4ab33cbb62 (patch)
tree241d41967b0c0fed43aeeed20d0ae8cfd6dd113e /Python/ceval.c
parentaaa917ff38f9869eeebe3bc9469bfee64089d826 (diff)
downloadcpython-0c3116309307ad2c7f8e2d2096612f4ab33cbb62.zip
cpython-0c3116309307ad2c7f8e2d2096612f4ab33cbb62.tar.gz
cpython-0c3116309307ad2c7f8e2d2096612f4ab33cbb62.tar.bz2
bpo-30854: Fix compile error when --without-threads (#2581)
* bpo-30854: Fix compile error when --without-threads * bpo-30854: fix news
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 0f6978e..59fc070 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -548,7 +548,7 @@ Py_MakePendingCalls(void)
arg = pendingcalls[i].arg;
pendingfirst = (i + 1) % NPENDINGCALLS;
if (func(arg) < 0) {
- goto error:
+ goto error;
}
}
busy = 0;