[Python-checkins] cpython (3.3): move definition to top of block

benjamin.peterson python-checkins at python.org
Fri May 17 02:38:59 CEST 2013


http://hg.python.org/cpython/rev/86783c4fd528
changeset:   83803:86783c4fd528
branch:      3.3
parent:      83798:590b865aa73c
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu May 16 19:38:22 2013 -0500
summary:
  move definition to top of block

files:
  Python/symtable.c |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Python/symtable.c b/Python/symtable.c
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -1236,13 +1236,14 @@
         asdl_seq *seq = s->v.Global.names;
         for (i = 0; i < asdl_seq_LEN(seq); i++) {
             identifier name = (identifier)asdl_seq_GET(seq, i);
+            long cur;
             if (st->st_cur->ste_type == ClassBlock &&
                 !PyUnicode_CompareWithASCIIString(name, "__class__")) {
                 PyErr_SetString(PyExc_SyntaxError, "cannot make __class__ global");
                 PyErr_SyntaxLocationEx(st->st_filename, s->lineno, s->col_offset);
                 return 0;
             }
-            long cur = symtable_lookup(st, name);
+            cur = symtable_lookup(st, name);
             if (cur < 0)
                 VISIT_QUIT(st, 0);
             if (cur & (DEF_LOCAL | USE)) {

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list