https://github.com/python/cpython/commit/3da64a01411affb300a685d6307b6d984a503c11 commit: 3da64a01411affb300a685d6307b6d984a503c11 branch: 3.7 author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com> committer: GitHub <noreply at github.com> date: 2018年11月09日T11:43:43-08:00 summary: Correct a typo in the Unittest documentation (GH-10397) Co-Authored-By: maggyero <gery.ogam at gmail.com> (cherry picked from commit 009b2f02049eda3b29d4f4f743e51df106686375) Co-authored-by: Géry Ogam <gery.ogam at gmail.com> files: M Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 1153459029ce..fb5bd2b7648e 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -607,7 +607,7 @@ Distinguishing test iterations using subtests .. versionadded:: 3.4 -When some of your tests differ only by a some very small differences, for +When there are very small differences among your tests, for instance some parameters, unittest allows you to distinguish them inside the body of a test method using the :meth:`~TestCase.subTest` context manager.