summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-09-06 19:13:14 +0000
committerFred Drake <fdrake@acm.org>2001-09-06 19:13:14 +0000
commit656f9ecb1eb9883dfaa42875e53f836e6f2054f5 (patch)
tree6ed533bf6a7d3031e7c3ff67dbb40ef6370fb94c
parent00bb329521b21c6c674cf0debecbaa3bae2a3420 (diff)
downloadcpython-git-656f9ecb1eb9883dfaa42875e53f836e6f2054f5.tar.gz
Add missing period in docstring.
(Steve, can you add this to the PyUnit repository as well?)
-rw-r--r--Lib/unittest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest.py b/Lib/unittest.py
index 9aa79b31d2..da6d9b042b 100644
--- a/Lib/unittest.py
+++ b/Lib/unittest.py
@@ -68,7 +68,7 @@ class TestResult:
Each instance holds the total number of tests run, and collections of
failures and errors that occurred among those test runs. The collections
contain tuples of (testcase, exceptioninfo), where exceptioninfo is the
- formatted traceback of the error that occurred
+ formatted traceback of the error that occurred.
"""
def __init__(self):
self.failures = []