commit | 39e32a7e8164961862362d15820575c26b4248fe | [log] [tgz] |
---|---|---|
author | Armin Rigo <arigo@tunes.org> | Wed Nov 24 13:17:48 2010 +0000 |
committer | Armin Rigo <arigo@tunes.org> | Wed Nov 24 13:17:48 2010 +0000 |
tree | a3c841342799c35aa730bb2129337771bfd79a9f | |
parent | 442e4477fee2d8ad235aa75cb8aeb1c6dafc2764 [diff] [blame] |
Revert r86726. Sorry about interfering with the rc.
diff --git a/Objects/setobject.c b/Objects/setobject.c index 56f3087..00cabe6 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_key(so, tmpkey); + rv = set_contains(so, tmpkey); Py_DECREF(tmpkey); } return rv;