[Python-checkins] distutils2: Fix one indented line and add a marker for later grepping

tarek.ziade python-checkins at python.org
Sat Jul 3 16:19:06 CEST 2010


tarek.ziade pushed c64e0613ed52 to distutils2:

http://hg.python.org/distutils2/rev/c64e0613ed52
changeset:   249:c64e0613ed52
user:        ?ric Araujo <merwok at netwok.org>
date:        Wed Jun 30 18:50:53 2010 +0200
summary:     Fix one indented line and add a marker for later grepping
files:       src/runtests.py

diff --git a/src/runtests.py b/src/runtests.py
--- a/src/runtests.py
+++ b/src/runtests.py
@@ -8,8 +8,7 @@
     import distutils2.tests
     from distutils2.tests import run_unittest, reap_children, TestFailed
     from distutils2._backport.tests import test_suite as btest_suite
-    # just supporting -q right now
-    # to enable detailed/quiet output
+    # XXX just supporting -q right now to enable detailed/quiet output
     if len(sys.argv) > 1:
         verbose = sys.argv[-1] != '-q'
     else:
@@ -17,7 +16,7 @@
     try:
         try:
             run_unittest([distutils2.tests.test_suite(), btest_suite()],
-                    verbose_=verbose)
+                         verbose_=verbose)
             return 0
         except TestFailed:
             return 1

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


More information about the Python-checkins mailing list