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);