diff options
author | Guido van Rossum <guido@python.org> | 1997-01-20 04:29:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-01-20 04:29:16 (GMT) |
commit | 3bb63a8dbe19592641330a8f1e12bec5dfd147d2 (patch) | |
tree | 6062ac51149f12e2f0c6d0a78d564a2cca9e8d44 /Objects | |
parent | 768360243aebbabebaf6baf50ac5659cb66474f9 (diff) | |
download | cpython-3bb63a8dbe19592641330a8f1e12bec5dfd147d2.zip cpython-3bb63a8dbe19592641330a8f1e12bec5dfd147d2.tar.gz cpython-3bb63a8dbe19592641330a8f1e12bec5dfd147d2.tar.bz2 |
Bugfix: remove ref to fast before it's defined.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/frameobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ locals_2_fast(f, clear) 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; |