summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-08-29 14:50:42 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-08-29 14:50:42 (GMT)
commit49ccd514d2e29048062a3a669fed98329807c765 (patch)
tree989cedbb4fc6407ee4adeec85475522aecd4fdd4 /Doc/library
parent28a6cfaefc41a4e4bfa6dd0b54318c0465987652 (diff)
downloadcpython-49ccd514d2e29048062a3a669fed98329807c765.zip
cpython-49ccd514d2e29048062a3a669fed98329807c765.tar.gz
cpython-49ccd514d2e29048062a3a669fed98329807c765.tar.bz2
Add missing comma.
Diffstat (limited to 'Doc/library')
-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 4d3216b..72a3a7b 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1271,7 +1271,7 @@ Test cases
.. method:: assertListEqual(first, second, msg=None)
assertTupleEqual(first, second, 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