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

benjamin.peterson python-checkins at python.org
Sun Oct 30 19:25:04 CET 2011


http://hg.python.org/cpython/rev/cdd9a97f3d28
changeset:   73207:cdd9a97f3d28
branch:      3.2
parent:      73205:608975eafe86
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Oct 30 14:24:44 2011 -0400
summary:
  remove unused variable

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


diff --git a/Objects/setobject.c b/Objects/setobject.c
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -1931,7 +1931,7 @@
 static PyObject *
 set_discard(PySetObject *so, PyObject *key)
 {
-    PyObject *tmpkey, *result;
+    PyObject *tmpkey;
     int rv;
 
     rv = set_discard_key(so, key);

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


More information about the Python-checkins mailing list