summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-09-02 15:06:03 (GMT)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-09-02 15:06:03 (GMT)
commit928d4eeee8e92ca44899108e297437392102aaa4 (patch)
tree179c0b0696808164132d0cc997f0086b8df7b919 /Objects
parent38d17e3df030e443653b8999a2e3ccf12968c9ae (diff)
downloadcpython-928d4eeee8e92ca44899108e297437392102aaa4.zip
cpython-928d4eeee8e92ca44899108e297437392102aaa4.tar.gz
cpython-928d4eeee8e92ca44899108e297437392102aaa4.tar.bz2
Removed an extraneous semicolon
Diffstat (limited to 'Objects')
-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);