diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-08 09:09:28 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-08 09:09:28 (GMT) |
commit | dee904342326969befcbef1fe51ccdf11f93c9c5 (patch) | |
tree | f639e0676cbc4f2ccdbb33564d560f1224274ebd /Lib/unittest | |
parent | 770a5bc9cda92a1a4f363686c0cbd403c33f440c (diff) | |
parent | 9cfa1ff891af6394cfcd4373c0c7d1e2a2dfd371 (diff) | |
download | cpython-dee904342326969befcbef1fe51ccdf11f93c9c5.zip cpython-dee904342326969befcbef1fe51ccdf11f93c9c5.tar.gz cpython-dee904342326969befcbef1fe51ccdf11f93c9c5.tar.bz2 |
#16433: merge with 3.3.
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: |