]> granicus.if.org Git - python/commitdiff
Comment out extend_stack() -- it is no longer needed.
authorGuido van Rossum <guido@python.org>
Fri, 17 Jan 1997 21:07:57 +0000 (21:07 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 17 Jan 1997 21:07:57 +0000 (21:07 +0000)
Objects/frameobject.c

index 9d80e1fd597a579d75e7b0d7901237fdbe7b44cb..e416b4fe9d1f2fe63b386dc367ae4a1124fba4f1 100644 (file)
@@ -238,6 +238,7 @@ newframeobject(back, code, globals, locals, owner, nvalues, nblocks)
        return f;
 }
 
+#if 0
 object **
 extend_stack(f, level, incr)
        frameobject *f;
@@ -254,6 +255,7 @@ extend_stack(f, level, incr)
        }
        return f->f_valuestack + level;
 }
+#endif
 
 /* Block management */