commit | 9cfa1ff891af6394cfcd4373c0c7d1e2a2dfd371 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Thu Nov 08 11:09:13 2012 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Thu Nov 08 11:09:13 2012 +0200 |
tree | ad176317693e7c93600f37fe2513c3fe48e2d6c2 | |
parent | b77dc4ec5f5901f3de106de8a7369df2cf46940e [diff] | |
parent | 90eea97a331b019caf05166547b8656c320be354 [diff] |
#16433: merge with 3.2.
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index f334865..2e5cb04 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py
@@ -642,7 +642,7 @@ assertion_func(first, second, msg=msg) def assertNotEqual(self, first, second, msg=None): - """Fail if the two objects are equal as determined by the '==' + """Fail if the two objects are equal as determined by the '!=' operator. """ if not first != second: