diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-08 09:09:13 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-08 09:09:13 (GMT) |
commit | 9cfa1ff891af6394cfcd4373c0c7d1e2a2dfd371 (patch) | |
tree | ad176317693e7c93600f37fe2513c3fe48e2d6c2 /Lib/unittest | |
parent | b77dc4ec5f5901f3de106de8a7369df2cf46940e (diff) | |
parent | 90eea97a331b019caf05166547b8656c320be354 (diff) | |
download | cpython-9cfa1ff891af6394cfcd4373c0c7d1e2a2dfd371.zip cpython-9cfa1ff891af6394cfcd4373c0c7d1e2a2dfd371.tar.gz cpython-9cfa1ff891af6394cfcd4373c0c7d1e2a2dfd371.tar.bz2 |
#16433: merge with 3.2.
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/case.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ class TestCase(object): 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: |