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

armin.rigo python-checkins at python.org
Wed Nov 24 11:39:23 CET 2010


Author: armin.rigo
Date: Wed Nov 24 11:39:23 2010
New Revision: 86726

Log:
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).


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 11:39:23 2010
@@ -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;


More information about the Python-checkins mailing list