[Python-checkins] r84434 - python/branches/py3k/Objects/setobject.c

daniel.stutzbach python-checkins at python.org
Thu Sep 2 17:06:03 CEST 2010


Author: daniel.stutzbach
Date: Thu Sep  2 17:06:03 2010
New Revision: 84434

Log:
Removed an extraneous semicolon

Modified:
   python/branches/py3k/Objects/setobject.c

Modified: python/branches/py3k/Objects/setobject.c
==============================================================================
--- python/branches/py3k/Objects/setobject.c	(original)
+++ python/branches/py3k/Objects/setobject.c	Thu Sep  2 17:06:03 2010
@@ -1439,7 +1439,7 @@
     while ((key = PyIter_Next(it)) != NULL) {
         int rv;
         setentry entry;
-        long hash = PyObject_Hash(key);;
+        long hash = PyObject_Hash(key);
 
         if (hash == -1) {
             Py_DECREF(key);


More information about the Python-checkins mailing list