diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-09-07 15:23:36 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-09-07 15:23:36 +0300 |
commit | e64a91a890eb8c114c7626ad1dbc20289cf52a7e (patch) | |
tree | ab76800de9bcd7158ede5988509b5253ab3b80a7 | |
parent | e2202365eddfa7a2af88920d272f9a4a3f77f9ad (diff) | |
download | cpython-git-e64a91a890eb8c114c7626ad1dbc20289cf52a7e.tar.gz |
#18895: split a sentence in unittest docs.
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index bdecb3ada5..4c39b82600 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1674,7 +1674,7 @@ Loading and running tests .. method:: addError(test, err) - Called when the test case *test* raises an unexpected exception *err* is a + Called when the test case *test* raises an unexpected exception. *err* is a tuple of the form returned by :func:`sys.exc_info`: ``(type, value, traceback)``. |