diff -r 2bda1065e931 Doc/library/unittest.rst --- a/Doc/library/unittest.rst Sun Mar 09 20:59:24 2014 -0500 +++ b/Doc/library/unittest.rst Mon Mar 10 22:03:35 2014 -0400 @@ -1624,11 +1624,11 @@ .. method:: discover(start_dir, pattern='test*.py', top_level_dir=None) - Find and return all test modules from the specified start directory, - recursing into subdirectories to find them. Only test files that match - *pattern* will be loaded. (Using shell style pattern matching.) Only - module names that are importable (i.e. are valid Python identifiers) will - be loaded. + Find all the test modules by recursing into subdirectories from the + specified start directory, and return a TestSuite object containing them. + Only test files that match *pattern* will be loaded. (Using shell style + pattern matching.) Only module names that are importable (i.e. are valid + Python identifiers) will be loaded. All test modules must be importable from the top level of the project. If the start directory is not the top level directory then the top level