From 3bb63a8dbe19592641330a8f1e12bec5dfd147d2 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 20 Jan 1997 04:29:16 +0000 Subject: [PATCH] Bugfix: remove ref to fast before it's defined. --- Objects/frameobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/frameobject.c b/Objects/frameobject.c index 281445558b2e..79757e9583aa 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;