diff options
author | Georg Brandl <georg@python.org> | 2014-10-02 10:37:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-02 10:37:50 (GMT) |
commit | 3f1ef9efd573f6fc9996d61dc239fdfed771614b (patch) | |
tree | 977f4726212952f89123b2fedd23f53a8ca5d87c /Doc/library/unittest.rst | |
parent | 529452926b25f0461cc4a1da4ab85f0e6fdd661b (diff) | |
download | cpython-3f1ef9efd573f6fc9996d61dc239fdfed771614b.zip cpython-3f1ef9efd573f6fc9996d61dc239fdfed771614b.tar.gz cpython-3f1ef9efd573f6fc9996d61dc239fdfed771614b.tar.bz2 |
Closes #18729: minor markup improvement.
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 52f6e3f..32cf94f 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1644,7 +1644,7 @@ Loading and running tests function. If this exists then it will be called with *loader*, *tests*, *pattern*. - If load_tests exists then discovery does *not* recurse into the package, + If ``load_tests`` exists then discovery does *not* recurse into the package, ``load_tests`` is responsible for loading all tests in the package. The pattern is deliberately not stored as a loader attribute so that |