]> granicus.if.org Git - python/commitdiff
Issue #22812: Fix unittest discovery examples.
authorRobert Collins <rbtcollins@hp.com>
Mon, 24 Aug 2015 00:14:28 +0000 (12:14 +1200)
committerRobert Collins <rbtcollins@hp.com>
Mon, 24 Aug 2015 00:14:28 +0000 (12:14 +1200)
Patch from Pam McA'Nulty.

Doc/library/unittest.rst
Misc/ACKS
Misc/NEWS

index f13100c9f8511dc2ee8a3c7f9d1c2af9b7a72137..a8a684cf3b2086c7b3e7e1fad592f55d0c68e07e 100644 (file)
@@ -271,8 +271,8 @@ The :option:`-s`, :option:`-p`, and :option:`-t` options can be passed in
 as positional arguments in that order. The following two command lines
 are equivalent::
 
-   python -m unittest discover -s project_directory -p '*_test.py'
-   python -m unittest discover project_directory '*_test.py'
+   python -m unittest discover -s project_directory -p "*_test.py"
+   python -m unittest discover project_directory "*_test.py"
 
 As well as being a path it is possible to pass a package name, for example
 ``myproject.subpackage.test``, as the start directory. The package name you
index 395b9e502be9ad470053710754eba8f3a8c38926..cb4f5a6ea99fbb76f18263cf4d8f64a8e1b34d13 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -894,6 +894,7 @@ Daniel May
 Madison May
 Lucas Maystre
 Arnaud Mazin
+Pam McA'Nulty
 Matt McClure
 Rebecca McCreary
 Kirk McDonald
index 1a2aebf36578932735ec97502fc1160704f72c88..b4fa7a1a0e980fee17cf4388949a5f53947d74f4 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -449,6 +449,9 @@ C API
 Documentation
 -------------
 
+- Issue #22812: Fix unittest discovery examples.
+  Patch from Pam McA'Nulty.
+
 - Issue #24129: Clarify the reference documentation for name resolution.
   This includes removing the assumption that readers will be familiar with the
   name resolution scheme Python used prior to the introduction of lexical