commit | 0c3116309307ad2c7f8e2d2096612f4ab33cbb62 | [log] [tgz] |
---|---|---|
author | Masayuki Yamamoto <ma3yuki.8mamo10@gmail.com> | Wed Jul 05 17:39:17 2017 +0900 |
committer | Victor Stinner <victor.stinner@gmail.com> | Wed Jul 05 10:39:17 2017 +0200 |
tree | 241d41967b0c0fed43aeeed20d0ae8cfd6dd113e | |
parent | aaa917ff38f9869eeebe3bc9469bfee64089d826 [diff] [blame] |
bpo-30854: Fix compile error when --without-threads (#2581) * bpo-30854: Fix compile error when --without-threads * bpo-30854: fix news
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 @@ arg = pendingcalls[i].arg; pendingfirst = (i + 1) % NPENDINGCALLS; if (func(arg) < 0) { - goto error: + goto error; } } busy = 0;