[Python-checkins] cpython: tracemalloc.py: fix indentation

victor.stinner python-checkins at python.org
Thu Mar 6 17:07:02 CET 2014


http://hg.python.org/cpython/rev/56fbf7a7173a
changeset:   89488:56fbf7a7173a
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Mar 06 17:06:04 2014 +0100
summary:
  tracemalloc.py: fix indentation

files:
  Lib/tracemalloc.py |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Lib/tracemalloc.py b/Lib/tracemalloc.py
--- a/Lib/tracemalloc.py
+++ b/Lib/tracemalloc.py
@@ -119,12 +119,12 @@
         previous = old_group.pop(traceback, None)
         if previous is not None:
             stat = StatisticDiff(traceback,
-                                  stat.size, stat.size - previous.size,
-                                  stat.count, stat.count - previous.count)
+                                 stat.size, stat.size - previous.size,
+                                 stat.count, stat.count - previous.count)
         else:
             stat = StatisticDiff(traceback,
-                                  stat.size, stat.size,
-                                  stat.count, stat.count)
+                                 stat.size, stat.size,
+                                 stat.count, stat.count)
         statistics.append(stat)
 
     for traceback, stat in old_group.items():

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


More information about the Python-checkins mailing list