From: Benjamin Peterson Date: Tue, 12 May 2015 15:32:41 +0000 (-0400) Subject: use our normal bracing style X-Git-Tag: v3.5.0b1~188 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=baa2e562ce830d71440a77ab8865cae4763e89c1;p=thirdparty%2FPython%2Fcpython.git use our normal bracing style --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 5f7c0ebba631..149b76eea7c8 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; }