From: Ezio Melotti Date: Fri, 28 Sep 2012 13:43:40 +0000 (+0300) Subject: Fix typo. X-Git-Tag: v3.3.1rc1~818^2^2~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e1af282b8e747c8dc032ea0dbda53f3f4ef17d4;p=python Fix typo. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index 3e91572d32..723679a7e6 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -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);