diff options
author | Guido van Rossum <guido@python.org> | 1995-01-30 12:53:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-30 12:53:21 (GMT) |
commit | a715299a145792b81f44f38cc2356d650faa1ebe (patch) | |
tree | febb06194cb1c8abe678e12da6af929f73355b67 /Python | |
parent | 90f0e07a5b149869460663e2734eb1186fc56900 (diff) | |
download | cpython-a715299a145792b81f44f38cc2356d650faa1ebe.zip cpython-a715299a145792b81f44f38cc2356d650faa1ebe.tar.gz cpython-a715299a145792b81f44f38cc2356d650faa1ebe.tar.bz2 |
remove unused variable
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index fb1c0e7..ff055e4 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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 |