diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-09-07 12:23:36 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-09-07 12:23:36 (GMT) |
commit | e64a91a890eb8c114c7626ad1dbc20289cf52a7e (patch) | |
tree | ab76800de9bcd7158ede5988509b5253ab3b80a7 | |
parent | e2202365eddfa7a2af88920d272f9a4a3f77f9ad (diff) | |
download | cpython-e64a91a890eb8c114c7626ad1dbc20289cf52a7e.zip cpython-e64a91a890eb8c114c7626ad1dbc20289cf52a7e.tar.gz cpython-e64a91a890eb8c114c7626ad1dbc20289cf52a7e.tar.bz2 |
#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 bdecb3a..4c39b82 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)``. |