]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
remove unused variable
authorGuido van Rossum <guido@python.org>
Mon, 30 Jan 1995 12:53:21 +0000 (12:53 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 30 Jan 1995 12:53:21 +0000 (12:53 +0000)
Python/ceval.c

index fb1c0e7269ba34300b16a1ce5632c66d6abf0508..ff055e452e1f8812043cec8d8a72288f7635ae23 100644 (file)
@@ -282,7 +282,6 @@ eval_code(co, globals, locals, owner, arg)
        register frameobject *f; /* Current frame */
        register listobject *fastlocals = NULL;
        object *retval;         /* Return value iff why == WHY_RETURN */
-       char *name;             /* Name used by some instructions */
        int needmerge = 0;      /* Set if need to merge locals back at end */
        int defmode = 0;        /* Default access mode for new variables */
 #ifdef LLTRACE