diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-05-12 15:32:41 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-05-12 15:32:41 (GMT) |
commit | baa2e562ce830d71440a77ab8865cae4763e89c1 (patch) | |
tree | ecd223828844f016ff711df194cd4cee837ca75d /Python | |
parent | 1dde177f826682668661eaf743926c6df70166f3 (diff) | |
download | cpython-baa2e562ce830d71440a77ab8865cae4763e89c1.zip cpython-baa2e562ce830d71440a77ab8865cae4763e89c1.tar.gz cpython-baa2e562ce830d71440a77ab8865cae4763e89c1.tar.bz2 |
use our normal bracing style
Diffstat (limited to 'Python')
-rw-r--r-- | Python/sysmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 5f7c0eb..149b76e 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -657,8 +657,9 @@ sys_set_coroutine_wrapper(PyObject *self, PyObject *wrapper) } PyEval_SetCoroutineWrapper(wrapper); } - else + else { PyEval_SetCoroutineWrapper(NULL); + } Py_RETURN_NONE; } |