diff -r 2a18f6b85da2 Doc/library/unittest.rst --- a/Doc/library/unittest.rst Sun Apr 12 18:47:56 2015 -0400 +++ b/Doc/library/unittest.rst Wed Apr 15 08:03:09 2015 -0400 @@ -278,8 +278,8 @@ 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