diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-04-29 07:53:31 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-04-29 07:53:31 (GMT) |
commit | 5fbd37e57a21b15def7550c5649600531d82030d (patch) | |
tree | 1eade50b575bdcfbde36c9afed87193827deaf70 | |
parent | 4ca008b643781e56a8ad0c5a812212f2953d3cd0 (diff) | |
parent | b8e336b974dc007346cfa6a9f5042fefb989db27 (diff) | |
download | cpython-5fbd37e57a21b15def7550c5649600531d82030d.zip cpython-5fbd37e57a21b15def7550c5649600531d82030d.tar.gz cpython-5fbd37e57a21b15def7550c5649600531d82030d.tar.bz2 |
Merge markup fix in unittest doc from 3.2.
-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 a51e947..df1ff92 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1547,8 +1547,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: |