diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-02-28 06:28:11 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-02-28 06:28:11 (GMT) |
commit | 4d6cb0fcf9210f33f47931c5d45c83e5c66658d2 (patch) | |
tree | 05553f965d591c2755197ec6f0efc38f58406efc /Doc | |
parent | 13fb979638d2cee941320176198ff39df7201aa9 (diff) | |
download | cpython-4d6cb0fcf9210f33f47931c5d45c83e5c66658d2.zip cpython-4d6cb0fcf9210f33f47931c5d45c83e5c66658d2.tar.gz cpython-4d6cb0fcf9210f33f47931c5d45c83e5c66658d2.tar.bz2 |
Fix markup in unittest docs.
Diffstat (limited to 'Doc')
-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 4edc89e..801c22d 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -2017,10 +2017,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 |