summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index e275bcc..a99beec 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);