diff options
author | Meador Inge <meadori@gmail.com> | 2012-07-18 22:48:34 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2012-07-18 22:48:34 (GMT) |
commit | 0e3755e58a0495f835fc2eb89c7a72e87366346c (patch) | |
tree | 88b39f869aa666435d71683b5ef9b75c168d6196 /Python/compile.c | |
parent | b8a569065eb05b14a7aef1d837159e7135defbfb (diff) | |
download | cpython-0e3755e58a0495f835fc2eb89c7a72e87366346c.zip cpython-0e3755e58a0495f835fc2eb89c7a72e87366346c.tar.gz cpython-0e3755e58a0495f835fc2eb89c7a72e87366346c.tar.bz2 |
remove unused variable
Diffstat (limited to 'Python/compile.c')
-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 3cf8c6e..531bed4 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -359,7 +359,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; |