diff options
author | Guido van Rossum <guido@python.org> | 1997-01-18 20:04:05 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-01-18 20:04:05 +0000 |
commit | 7eb883a18e2260c73fd08073b640eac07c6788c7 (patch) | |
tree | d499dae29386c8f55d1928f2a403132f77cd1dda /Python | |
parent | 8d751616710f480833e87c5b752a4d2aecee58a1 (diff) | |
download | cpython-git-7eb883a18e2260c73fd08073b640eac07c6788c7.tar.gz |
Remove unused variable.
Diffstat (limited to 'Python')
-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 a772d79e71..6d3a479f49 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; |