When the regression test is run in verbose mode, make the PyUNIT-based
tests a little noisier, providing more progress information.
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index 426f7aa..aa8eaa6 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -112,7 +112,7 @@
 def run_unittest(testclass):
     """Run tests from a unittest.TestCase-derived class."""
     if verbose:
-        runner = unittest.TextTestRunner(sys.stdout, descriptions=0)
+        runner = unittest.TextTestRunner(sys.stdout, verbosity=2)
     else:
         runner = BasicTestRunner()