Commit 928d4eee authored by Daniel Stutzbach's avatar Daniel Stutzbach

Removed an extraneous semicolon

parent 38d17e3d
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment