[Python-checkins] bpo-43954: Fix a missing word in the unittest docs (GH-25672)

miss-islington webhook-mailer at python.org
Fri Apr 30 03:57:04 EDT 2021


https://github.com/python/cpython/commit/a92d7387632de1fc64de51f22f6191acd0c6f5c0
commit: a92d7387632de1fc64de51f22f6191acd0c6f5c0
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-04-30T00:56:56-07:00
summary:

bpo-43954: Fix a missing word in the unittest docs (GH-25672)

(cherry picked from commit 2abbd8f2add5e80b86a965625b9a77ae94a101cd)

Co-authored-by: Zackery Spytz <zspytz at gmail.com>

files:
M Doc/library/unittest.rst

diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index ebed5c08082d0..9541997e3ccca 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -331,8 +331,9 @@ the `load_tests protocol`_.
 
 .. versionchanged:: 3.4
    Test discovery supports :term:`namespace packages <namespace package>`
-   for start directory. Note that you need to the top level directory too.
-   (e.g. ``python -m unittest discover -s root/namespace -t root``).
+   for the start directory. Note that you need to specify the top level
+   directory too (e.g.
+   ``python -m unittest discover -s root/namespace -t root``).
 
 
 .. _organizing-tests:



More information about the Python-checkins mailing list