diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2013-02-22 02:52:12 (GMT) |
---|---|---|
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2013-02-22 02:52:12 (GMT) |
commit | 13cee1696f385fc218bd9eaebc3e50700a8fd397 (patch) | |
tree | 479a688383a1a51cb9f686b749a46c6563c42e75 | |
parent | 7d0eb4b234bacab520104b6c797f69b101baad64 (diff) | |
download | cpython-13cee1696f385fc218bd9eaebc3e50700a8fd397.zip cpython-13cee1696f385fc218bd9eaebc3e50700a8fd397.tar.gz cpython-13cee1696f385fc218bd9eaebc3e50700a8fd397.tar.bz2 |
Issue #17203: add long option names to unittest discovery docs.
-rw-r--r-- | Doc/library/unittest.rst | 10 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 0a3f64b..76c5b1b 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -279,15 +279,15 @@ The ``discover`` sub-command has the following options: Verbose output -.. cmdoption:: -s directory +.. cmdoption:: -s, --start-directory directory - Directory to start discovery ('.' default) + Directory to start discovery (``.`` default) -.. cmdoption:: -p pattern +.. cmdoption:: -p, --pattern pattern - Pattern to match test files ('test*.py' default) + 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) @@ -918,6 +918,8 @@ Tools/Demos 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. |