Adds a verbosity keyword argument to unittest.main plus a minor fix allowing you to specify test modules / classes
from the command line.

Closes issue 5995.

Michael Foord
diff --git a/Misc/NEWS b/Misc/NEWS
index c79ee75..8689f14 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -428,6 +428,12 @@
 
 - Issue #3379: unittest.main now takes an optional exit argument. If False main
   doesn't call sys.exit allowing it to be used from the interactive interpreter.
+  
+- Issue #5995: unittest.main now takes an optional verbosity argument allowing 
+  test modules to be run with a higher than default verbosity.
+  
+- Issue 5995: A fix to allow you to run "python -m unittest test_module" or 
+  "python -m unittest test_module.TestClass" from the command line.
 
 - Issue #5728: unittest.TestResult has new startTestRun and stopTestRun methods;
   called immediately before and after a test run.