[Python-checkins] cpython: space

benjamin.peterson python-checkins at python.org
Thu Mar 15 21:38:29 CET 2012


http://hg.python.org/cpython/rev/ef3e4cdbb75c
changeset:   75715:ef3e4cdbb75c
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu Mar 15 15:37:54 2012 -0500
summary:
  space

files:
  Objects/genobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/genobject.c b/Objects/genobject.c
--- a/Objects/genobject.c
+++ b/Objects/genobject.c
@@ -53,7 +53,7 @@
                         "generator already executing");
         return NULL;
     }
-    if (f==NULL || f->f_stacktop == NULL) {
+    if (f == NULL || f->f_stacktop == NULL) {
         /* Only set exception if called from send() */
         if (arg && !exc)
             PyErr_SetNone(PyExc_StopIteration);

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list