From: Daniel Stutzbach Date: Thu, 2 Sep 2010 15:06:03 +0000 (+0000) Subject: Removed an extraneous semicolon X-Git-Tag: v3.2a2~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=928d4eeee8e92ca44899108e297437392102aaa4;p=python Removed an extraneous semicolon --- diff --git a/Objects/setobject.c b/Objects/setobject.c index e275bcc9d4..a99beec36c 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -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);