[Python-checkins] cpython: use our normal bracing style

benjamin.peterson python-checkins at python.org
Tue May 12 17:32:47 CEST 2015


https://hg.python.org/cpython/rev/47d91697441d
changeset:   95984:47d91697441d
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue May 12 11:32:41 2015 -0400
summary:
  use our normal bracing style

files:
  Python/sysmodule.c |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Python/sysmodule.c b/Python/sysmodule.c
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -657,8 +657,9 @@
         }
         PyEval_SetCoroutineWrapper(wrapper);
     }
-    else
+    else {
         PyEval_SetCoroutineWrapper(NULL);
+    }
     Py_RETURN_NONE;
 }
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list