diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-15 20:37:54 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-15 20:37:54 (GMT) |
commit | f50af113ab1bd6e435167e94c42498a8d20895c2 (patch) | |
tree | 1ec92c83ad2c0e000e65058e6e88da110c218d95 /Objects | |
parent | 2afe6aeae820cf2272c6f9be60b185e1c27b734b (diff) | |
download | cpython-f50af113ab1bd6e435167e94c42498a8d20895c2.zip cpython-f50af113ab1bd6e435167e94c42498a8d20895c2.tar.gz cpython-f50af113ab1bd6e435167e94c42498a8d20895c2.tar.bz2 |
space
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/genobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/genobject.c b/Objects/genobject.c index cd2fe3d..0fc14db 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); |