mirror of https://github.com/python/cpython
Removed an extraneous semicolon
This commit is contained in:
parent
38d17e3df0
commit
928d4eeee8
|
@ -1439,7 +1439,7 @@ set_isdisjoint(PySetObject *so, PyObject *other)
|
||||||
while ((key = PyIter_Next(it)) != NULL) {
|
while ((key = PyIter_Next(it)) != NULL) {
|
||||||
int rv;
|
int rv;
|
||||||
setentry entry;
|
setentry entry;
|
||||||
long hash = PyObject_Hash(key);;
|
long hash = PyObject_Hash(key);
|
||||||
|
|
||||||
if (hash == -1) {
|
if (hash == -1) {
|
||||||
Py_DECREF(key);
|
Py_DECREF(key);
|
||||||
|
|
Loading…
Reference in New Issue