From: Ezio Melotti <ezio.melotti@gmail.com> Date: Wed, 29 Aug 2012 14:50:42 +0000 (+0300) Subject: Add missing comma. X-Git-Tag: v2.7.5~109^2~344 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bb9c73b06e481462a874b1aaa7d27d36c758e2e;p=python Add missing comma. --- 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