diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-02-28 06:31:32 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-02-28 06:31:32 (GMT) |
commit | 26db85b30ee10852a6091982c7a3cc75cab94764 (patch) | |
tree | 7eec249afdb29b0beb1ec69c71ce49d138d4793a /Doc/library/unittest.rst | |
parent | f9e9754c474bdf86ca6c7fab0310ac826f277ca3 (diff) | |
parent | df2460564d723a965467887a62c0f23d78502075 (diff) | |
download | cpython-26db85b30ee10852a6091982c7a3cc75cab94764.zip cpython-26db85b30ee10852a6091982c7a3cc75cab94764.tar.gz cpython-26db85b30ee10852a6091982c7a3cc75cab94764.tar.bz2 |
Merge markup fixes in unittest docs from 3.3.
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index f79b0ea..29ae1f9 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1874,10 +1874,10 @@ name then the package :file:`__init__.py` will be checked for ``load_tests``. .. note:: - The default pattern is 'test*.py'. This matches all Python files - that start with 'test' but *won't* match any test directories. + The default pattern is ``'test*.py'``. This matches all Python files + that start with ``'test'`` but *won't* match any test directories. - A pattern like 'test*' will match test packages as well as + A pattern like ``'test*'`` will match test packages as well as modules. If the package :file:`__init__.py` defines ``load_tests`` then it will be |