commit | 00ebe2cdc46ea759209ccea1c96d6b75fd3c07c5 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Sep 10 22:02:31 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Sep 10 22:02:31 2010 +0000 |
tree | 976b49f952512d94fded52f79b3f6dde755b494b | |
parent | d032532bb9307a4163152a808e96d471c9f180b1 [diff] [blame] |
use DISPATCH() instead of continue
diff --git a/Python/ceval.c b/Python/ceval.c index f0d278c..ff505a5 100644 --- a/Python/ceval.c +++ b/Python/ceval.c
@@ -2148,7 +2148,7 @@ x = freevars[oparg]; if (PyCell_GET(x) != NULL) { PyCell_Set(x, NULL); - continue; + DISPATCH(); } err = -1; format_exc_unbound(co, oparg);