summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-15 15:37:54 -0500
committerBenjamin Peterson <benjamin@python.org>2012-03-15 15:37:54 -0500
commitf50af113ab1bd6e435167e94c42498a8d20895c2 (patch)
tree1ec92c83ad2c0e000e65058e6e88da110c218d95 /Objects
parent2afe6aeae820cf2272c6f9be60b185e1c27b734b (diff)
downloadcpython-git-f50af113ab1bd6e435167e94c42498a8d20895c2.tar.gz
space
Diffstat (limited to 'Objects')
-rw-r--r--Objects/genobject.c2
1 files changed, 1 insertions, 1 deletions
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);