diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-04-29 10:52:18 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-04-29 10:52:18 +0300 |
commit | 217e6a66db6d0f15e5f5a64c22e450ead4061b34 (patch) | |
tree | 683c3f8ab68421715f553ec0bf6486a53aafeaec | |
parent | fb5aebc1ccc9153508af0872accc094fdd3fd99a (diff) | |
download | cpython-git-217e6a66db6d0f15e5f5a64c22e450ead4061b34.tar.gz |
Fix markup in unittest doc.
-rw-r--r-- | Doc/library/unittest.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 36a1532fe4..1782e23d4d 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1426,8 +1426,8 @@ Loading and running tests The :class:`TestLoader` class is used to create test suites from classes and modules. Normally, there is no need to create an instance of this class; the :mod:`unittest` module provides an instance that can be shared as - ``unittest.defaultTestLoader``. Using a subclass or instance, however, allows - customization of some configurable properties. + :data:`unittest.defaultTestLoader`. Using a subclass or instance, however, + allows customization of some configurable properties. :class:`TestLoader` objects have the following methods: |