[Python-checkins] cpython (2.7): Fix indentation

brett.cannon python-checkins at python.org
Fri Oct 2 19:22:43 EDT 2015


https://hg.python.org/cpython/rev/30c143a705dd
changeset:   98497:30c143a705dd
branch:      2.7
user:        Brett Cannon <brett at python.org>
date:        Fri Oct 02 16:22:32 2015 -0700
summary:
  Fix indentation

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


diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -368,7 +368,7 @@
             print json.dumps(result)
             sys.exit(0)
         elif o in ('-P', '--pgo'):
-            pgo = True            
+            pgo = True
         else:
             print >>sys.stderr, ("No handler for option {}.  Please "
                 "report this as a bug at http://bugs.python.org.").format(o)
@@ -580,7 +580,7 @@
         for worker in workers:
             worker.join()
     else:
-        for test_index, test in enumerate(tests, 1):            
+        for test_index, test in enumerate(tests, 1):
             if not quiet:
                 fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}"
                 print(fmt.format(
@@ -736,9 +736,9 @@
     test_times -- a list of (time, test_name) pairs
     huntrleaks -- run multiple times to test for leaks; requires a debug
                   build; a triple corresponding to -R's three arguments
-    pgo -- if true, do not print unnecessary info when running the test 
+    pgo -- if true, do not print unnecessary info when running the test
            for Profile Guided Optimization build
-           
+
     Returns one of the test result constants:
         INTERRUPTED      KeyboardInterrupt when run under -j
         RESOURCE_DENIED  test skipped because resource denied

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


More information about the Python-checkins mailing list