[Python-checkins] Fix reST markup in unittest documentation (GH-8665)

Berker Peksag webhook-mailer at python.org
Fri Aug 3 18:13:56 EDT 2018


https://github.com/python/cpython/commit/2a2a3f56f510844a5266f74f347a3fa3baee8ba2
commit: 2a2a3f56f510844a5266f74f347a3fa3baee8ba2
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Berker Peksag <berker.peksag at gmail.com>
date: 2018-08-04T01:13:52+03:00
summary:

Fix reST markup in unittest documentation (GH-8665)

(cherry picked from commit 2e5566d9e774dcde81e8139b486730917816e045)

Co-authored-by: Berker Peksag <berker.peksag at gmail.com>

files:
M Doc/library/unittest.rst

diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 086d93782562..224adf08567e 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -412,7 +412,7 @@ run whether the test method succeeded or not.
 Such a working environment for the testing code is called a
 :dfn:`test fixture`.  A new TestCase instance is created as a unique
 test fixture used to execute each individual test method.  Thus
-`~TestCase.setUp`, `~TestCase.tearDown`, and `~TestCase.__init__`
+:meth:`~TestCase.setUp`, :meth:`~TestCase.tearDown`, and :meth:`~TestCase.__init__`
 will be called once per test.
 
 It is recommended that you use TestCase implementations to group tests together



More information about the Python-checkins mailing list