From: Benjamin Peterson Date: Thu, 15 Mar 2012 20:37:54 +0000 (-0500) Subject: space X-Git-Tag: v3.3.0a2~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f50af113ab1bd6e435167e94c42498a8d20895c2;p=python space --- diff --git a/Objects/genobject.c b/Objects/genobject.c index cd2fe3d2e5..0fc14db89e 100644 --- a/Objects/genobject.c +++ b/Objects/genobject.c @@ -53,7 +53,7 @@ gen_send_ex(PyGenObject *gen, PyObject *arg, int exc) "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);