commit | 928d4eeee8e92ca44899108e297437392102aaa4 | [log] [tgz] |
---|---|---|
author | Daniel Stutzbach <daniel@stutzbachenterprises.com> | Thu Sep 02 15:06:03 2010 +0000 |
committer | Daniel Stutzbach <daniel@stutzbachenterprises.com> | Thu Sep 02 15:06:03 2010 +0000 |
tree | 179c0b0696808164132d0cc997f0086b8df7b919 | |
parent | 38d17e3df030e443653b8999a2e3ccf12968c9ae [diff] |
Removed an extraneous semicolon
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 @@ 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);