[Python-checkins] cpython (merge 3.3 -> default): merge 3.3

benjamin.peterson python-checkins at python.org
Sun Jul 21 22:29:51 CEST 2013


http://hg.python.org/cpython/rev/e82472e4fd97
changeset:   84769:e82472e4fd97
parent:      84767:c72f4f076d29
parent:      84768:5607084e2204
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Jul 21 13:29:42 2013 -0700
summary:
  merge 3.3

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


diff --git a/Python/traceback.c b/Python/traceback.c
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -324,7 +324,7 @@
     strcpy(buf, "          ");
     assert (strlen(buf) == 10);
     while (indent > 0) {
-        if(indent < 10)
+        if (indent < 10)
             buf[indent] = '\0';
         err = PyFile_WriteString(buf, f);
         if (err != 0)

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


More information about the Python-checkins mailing list