diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-07-18 22:12:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-07-18 22:12:47 (GMT) |
commit | 51ab2830bb88d9a1b2028fd128134a0361d821cf (patch) | |
tree | 839273ee8b5d8958ca5e1e3dc65e49fe5a52be6b /Python | |
parent | 9544aa38d982ddb5291af1e012cd2f650aabb7c0 (diff) | |
download | cpython-51ab2830bb88d9a1b2028fd128134a0361d821cf.zip cpython-51ab2830bb88d9a1b2028fd128134a0361d821cf.tar.gz cpython-51ab2830bb88d9a1b2028fd128134a0361d821cf.tar.bz2 |
remove unused variable
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 9c8879f..ff55220 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -397,7 +397,7 @@ each key. static PyObject * dictbytype(PyObject *src, int scope_type, int flag, int offset) { - Py_ssize_t pos = 0, i = offset, scope, num_keys, key_i; + Py_ssize_t i = offset, scope, num_keys, key_i; PyObject *k, *v, *dest = PyDict_New(); PyObject *sorted_keys; |