summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-07-18 22:48:34 (GMT)
committerMeador Inge <meadori@gmail.com>2012-07-18 22:48:34 (GMT)
commit0e3755e58a0495f835fc2eb89c7a72e87366346c (patch)
tree88b39f869aa666435d71683b5ef9b75c168d6196 /Python
parentb8a569065eb05b14a7aef1d837159e7135defbfb (diff)
downloadcpython-0e3755e58a0495f835fc2eb89c7a72e87366346c.zip
cpython-0e3755e58a0495f835fc2eb89c7a72e87366346c.tar.gz
cpython-0e3755e58a0495f835fc2eb89c7a72e87366346c.tar.bz2
remove unused variable
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c2
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;