commit | 442e4477fee2d8ad235aa75cb8aeb1c6dafc2764 | [log] [tgz] |
---|---|---|
author | Armin Rigo <arigo@tunes.org> | Wed Nov 24 10:39:23 2010 +0000 |
committer | Armin Rigo <arigo@tunes.org> | Wed Nov 24 10:39:23 2010 +0000 |
tree | 7cbf376b8522cabfa74a7bded9562366d751f018 | |
parent | 61ff85e609485c7d9d250c23d30a6ef9bd978576 [diff] [blame] |
A no-op change. It looks like this call was not meant to be a recursive call, but just call the helper (which the recursive call ends up doing).
diff --git a/Objects/setobject.c b/Objects/setobject.c index 00cabe6..56f3087 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c
@@ -1858,7 +1858,7 @@ tmpkey = make_new_set(&PyFrozenSet_Type, key); if (tmpkey == NULL) return -1; - rv = set_contains(so, tmpkey); + rv = set_contains_key(so, tmpkey); Py_DECREF(tmpkey); } return rv;