summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-02-08 23:15:22 (GMT)
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-02-08 23:15:22 (GMT)
commit7b5aa463f99f600803207ea4bc1aa63b4befdd7d (patch)
tree57b7e4893eb7a97c200e930c0f2fc2ea4ee84048
parent11f5c9e0011cfa2a9435a9c7b5c9870421310051 (diff)
downloadcpython-7b5aa463f99f600803207ea4bc1aa63b4befdd7d.zip
cpython-7b5aa463f99f600803207ea4bc1aa63b4befdd7d.tar.gz
cpython-7b5aa463f99f600803207ea4bc1aa63b4befdd7d.tar.bz2
Doc fix for unittest.
-rw-r--r--Doc/library/unittest.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 90f5bec..0c22fd7 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -696,8 +696,9 @@ Test cases
In addition, if *first* and *second* are the exact same type and one of
list, tuple, dict, set, frozenset or unicode or any type that a subclass
- registers :meth:`addTypeEqualityFunc` the type specific equality function
- will be called in order to generate a more useful default error message.
+ registers with :meth:`addTypeEqualityFunc` the type specific equality
+ function will be called in order to generate a more useful default error
+ message.
.. versionchanged:: 2.7
Added the automatic calling of type specific equality function.