commit | 7eb883a18e2260c73fd08073b640eac07c6788c7 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sat Jan 18 20:04:05 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Sat Jan 18 20:04:05 1997 +0000 |
tree | d499dae29386c8f55d1928f2a403132f77cd1dda | |
parent | 8d751616710f480833e87c5b752a4d2aecee58a1 [diff] |
Remove unused variable.
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 @@ /* Intern selected string constants */ for (i = gettuplesize(consts); --i >= 0; ) { object *v = gettupleitem(consts, i); - int n; char *p; if (!is_stringobject(v)) continue;