commit | 3bb63a8dbe19592641330a8f1e12bec5dfd147d2 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Jan 20 04:29:16 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Jan 20 04:29:16 1997 +0000 |
tree | 6062ac51149f12e2f0c6d0a78d564a2cca9e8d44 | |
parent | 768360243aebbabebaf6baf50ac5659cb66474f9 [diff] |
Bugfix: remove ref to fast before it's defined.
diff --git a/Objects/frameobject.c b/Objects/frameobject.c index 2814455..79757e9 100644 --- a/Objects/frameobject.c +++ b/Objects/frameobject.c
@@ -307,7 +307,7 @@ return; locals = f->f_locals; map = f->f_code->co_varnames; - if (locals == NULL || fast == NULL || f->f_code->co_nlocals == 0) + if (locals == NULL || f->f_code->co_nlocals == 0) return; if (!is_dictobject(locals) || !is_tupleobject(map)) return;