summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-08-29 17:50:42 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2012-08-29 17:50:42 +0300
commit6bb9c73b06e481462a874b1aaa7d27d36c758e2e (patch)
tree8e65ee659476029ca53f590bca86d3ddeb93654a
parent1321c444d91a324bfdb7d43b482139c2210df86d (diff)
downloadcpython-git-6bb9c73b06e481462a874b1aaa7d27d36c758e2e.tar.gz
Add missing comma.
-rw-r--r--Doc/library/unittest.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 32d319fbe1..0a3f64b36a 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1157,7 +1157,7 @@ Test cases
.. method:: assertListEqual(list1, list2, msg=None)
assertTupleEqual(tuple1, tuple2, msg=None)
- Tests that two lists or tuples are equal. If not an error message is
+ Tests that two lists or tuples are equal. If not, an error message is
constructed that shows only the differences between the two. An error
is also raised if either of the parameters are of the wrong type.
These methods are used by default when comparing lists or tuples with