diff options
author | Guido van Rossum <guido@python.org> | 1997-01-18 20:04:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-01-18 20:04:05 (GMT) |
commit | 7eb883a18e2260c73fd08073b640eac07c6788c7 (patch) | |
tree | d499dae29386c8f55d1928f2a403132f77cd1dda /Python/compile.c | |
parent | 8d751616710f480833e87c5b752a4d2aecee58a1 (diff) | |
download | cpython-7eb883a18e2260c73fd08073b640eac07c6788c7.zip cpython-7eb883a18e2260c73fd08073b640eac07c6788c7.tar.gz cpython-7eb883a18e2260c73fd08073b640eac07c6788c7.tar.bz2 |
Remove unused variable.
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index a772d79..6d3a479 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -225,7 +225,6 @@ newcodeobject(argcount, nlocals, stacksize, flags, /* Intern selected string constants */ for (i = gettuplesize(consts); --i >= 0; ) { object *v = gettupleitem(consts, i); - int n; char *p; if (!is_stringobject(v)) continue; |