mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Removed an extraneous semicolon
This commit is contained in:
parent
38d17e3df0
commit
928d4eeee8
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue