[Python-checkins] r84689 - python/branches/py3k/Python/ceval.c

benjamin.peterson python-checkins at python.org
Sat Sep 11 00:02:31 CEST 2010


Author: benjamin.peterson
Date: Sat Sep 11 00:02:31 2010
New Revision: 84689

Log:
use DISPATCH() instead of continue

Modified:
   python/branches/py3k/Python/ceval.c

Modified: python/branches/py3k/Python/ceval.c
==============================================================================
--- python/branches/py3k/Python/ceval.c	(original)
+++ python/branches/py3k/Python/ceval.c	Sat Sep 11 00:02:31 2010
@@ -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);


More information about the Python-checkins mailing list