Commit 3bb63a8d authored by Guido van Rossum's avatar Guido van Rossum

Bugfix: remove ref to fast before it's defined.

parent 76836024
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment