]> granicus.if.org Git - python/commitdiff
Fix typo.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 28 Sep 2012 13:43:40 +0000 (16:43 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 28 Sep 2012 13:43:40 +0000 (16:43 +0300)
Objects/setobject.c

index 3e91572d32b99c928c0f6774988208528d38a020..723679a7e6ef33b5c6a40e38eb30585124e6fb07 100644 (file)
@@ -831,10 +831,10 @@ setiter_reduce(setiterobject *si)
     if (!list)
         return NULL;
 
-    /* copy the itertor state */
+    /* copy the iterator state */
     tmp = *si;
     Py_XINCREF(tmp.si_set);
-    
+
     /* iterate the temporary into a list */
     for(;;) {
         PyObject *element = setiter_iternext(&tmp);