]> granicus.if.org Git - python/commitdiff
Removed an extraneous semicolon
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>
Thu, 2 Sep 2010 15:06:03 +0000 (15:06 +0000)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>
Thu, 2 Sep 2010 15:06:03 +0000 (15:06 +0000)
Objects/setobject.c

index e275bcc9d489f16a450f42aaa18b449703332a94..a99beec36c697e477ff973ef6c972c260acdd18a 100644 (file)
@@ -1439,7 +1439,7 @@ set_isdisjoint(PySetObject *so, PyObject *other)
     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);