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

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


http://hg.python.org/cpython/rev/e0fe5eead38a
changeset:   80309:e0fe5eead38a
branch:      3.3
parent:      80305:87ec3ce3a04e
parent:      80308:9d5cc978cfe5
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Thu Nov 08 11:09:13 2012 +0200
summary:
  #16433: merge with 3.2.

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