[Python-checkins] cpython (merge 3.2 -> 3.3): Issue #17203: add long option names to unittest discovery docs.

chris.jerdonek python-checkins at python.org
Fri Feb 22 04:04:56 CET 2013


http://hg.python.org/cpython/rev/7d1122c79985
changeset:   82310:7d1122c79985
branch:      3.3
parent:      82306:576d2c885eb6
parent:      82309:c0581f7be196
user:        Chris Jerdonek <chris.jerdonek at gmail.com>
date:        Thu Feb 21 19:00:06 2013 -0800
summary:
  Issue #17203: add long option names to unittest discovery docs.

files:
  Doc/library/unittest.rst |  6 +++---
  Misc/NEWS                |  2 ++
  2 files changed, 5 insertions(+), 3 deletions(-)


diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -263,15 +263,15 @@
 
    Verbose output
 
-.. cmdoption:: -s directory
+.. cmdoption:: -s, --start-directory directory
 
    Directory to start discovery (``.`` default)
 
-.. cmdoption:: -p pattern
+.. cmdoption:: -p, --pattern pattern
 
    Pattern to match test files (``test*.py`` default)
 
-.. cmdoption:: -t directory
+.. cmdoption:: -t, --top-level-directory directory
 
    Top level directory of project (defaults to start directory)
 
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -748,6 +748,8 @@
 Documentation
 -------------
 
+- Issue #17203: add long option names to unittest discovery docs.
+
 - Issue #13094: add "Why do lambdas defined in a loop with different values
   all return the same result?" programming FAQ.
 

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


More information about the Python-checkins mailing list