[Python-checkins] cpython (3.2): remove unused variable

meador.inge python-checkins at python.org
Thu Jul 19 01:10:36 CEST 2012


http://hg.python.org/cpython/rev/1577e66a6642
changeset:   78171:1577e66a6642
branch:      3.2
parent:      78167:1c46f2ede4cb
user:        Meador Inge <meadori at gmail.com>
date:        Wed Jul 18 17:57:46 2012 -0500
summary:
  remove unused variable

files:
  Python/compile.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/compile.c b/Python/compile.c
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -367,7 +367,7 @@
 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;
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list