From 928d4eeee8e92ca44899108e297437392102aaa4 Mon Sep 17 00:00:00 2001 From: Daniel Stutzbach Date: Thu, 2 Sep 2010 15:06:03 +0000 Subject: [PATCH] Removed an extraneous semicolon --- Objects/setobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/setobject.c b/Objects/setobject.c index e275bcc9d48..a99beec36c6 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);