[Python-checkins] cpython (3.2): fix formatting

benjamin.peterson python-checkins at python.org
Tue Jan 3 23:48:34 CET 2012


http://hg.python.org/cpython/rev/7b01b88aae44
changeset:   74259:7b01b88aae44
branch:      3.2
parent:      74257:c39fbb24b3f4
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue Jan 03 16:47:22 2012 -0600
summary:
  fix formatting

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


diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -494,7 +494,7 @@
     PyObject *format_spec = NULL;
 
     if (!PyArg_ParseTuple(args, "O|U:format", &value, &format_spec))
-    return NULL;
+        return NULL;
 
     return PyObject_Format(value, format_spec);
 }

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


More information about the Python-checkins mailing list