[Python-checkins] r86728 - python/branches/release27-maint/Objects/setobject.c

armin.rigo python-checkins at python.org
Wed Nov 24 14:17:48 CET 2010


Author: armin.rigo
Date: Wed Nov 24 14:17:48 2010
New Revision: 86728

Log:
Revert r86726.  Sorry about interfering with the rc.

Modified:
   python/branches/release27-maint/Objects/setobject.c

Modified: python/branches/release27-maint/Objects/setobject.c
==============================================================================
--- python/branches/release27-maint/Objects/setobject.c	(original)
+++ python/branches/release27-maint/Objects/setobject.c	Wed Nov 24 14:17:48 2010
@@ -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;


More information about the Python-checkins mailing list