diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-05-12 11:32:41 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-05-12 11:32:41 -0400 |
commit | baa2e562ce830d71440a77ab8865cae4763e89c1 (patch) | |
tree | ecd223828844f016ff711df194cd4cee837ca75d /Python/sysmodule.c | |
parent | 1dde177f826682668661eaf743926c6df70166f3 (diff) | |
download | cpython-git-baa2e562ce830d71440a77ab8865cae4763e89c1.tar.gz |
use our normal bracing style
Diffstat (limited to 'Python/sysmodule.c')
-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 5f7c0ebba6..149b76eea7 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; } |