[Python-checkins] cpython (merge 3.3 -> default): #16433: merge with 3.3.

ezio.melotti python-checkins at python.org
Thu Nov 8 10:09:46 CET 2012


http://hg.python.org/cpython/rev/6eba4df6bb21
changeset:   80310:6eba4df6bb21
parent:      80306:20b65b88e0a0
parent:      80309:e0fe5eead38a
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Thu Nov 08 11:09:28 2012 +0200
summary:
  #16433: merge with 3.3.

files:
  Lib/unittest/case.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
--- 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:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list