diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-02-28 06:29:37 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-02-28 06:29:37 (GMT) |
commit | df2460564d723a965467887a62c0f23d78502075 (patch) | |
tree | 432c1fd771e25df5ad45f9df84af1f1ab5ff64f1 /Doc | |
parent | 79333db79a5fc29bd7945955e677f3d9472eb656 (diff) | |
parent | 4d6cb0fcf9210f33f47931c5d45c83e5c66658d2 (diff) | |
download | cpython-df2460564d723a965467887a62c0f23d78502075.zip cpython-df2460564d723a965467887a62c0f23d78502075.tar.gz cpython-df2460564d723a965467887a62c0f23d78502075.tar.bz2 |
Merge markup fixes in unittest docs from 3.2.
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 7d18788..b7bc80c 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1870,10 +1870,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 |