[Python-checkins] python/dist/src/Misc NEWS,1.712,1.713
rhettinger@users.sourceforge.net
rhettinger@users.sourceforge.net
Fri, 04 Apr 2003 14:56:45 -0800
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv18890/Misc
Modified Files:
NEWS
Log Message:
SF bug #715145: unittest.py still uses != in failUnlessEqual
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.712
retrieving revision 1.713
diff -C2 -d -r1.712 -r1.713
*** NEWS 3 Apr 2003 04:49:11 -0000 1.712
--- NEWS 4 Apr 2003 22:56:42 -0000 1.713
***************
*** 74,77 ****
--- 74,81 ----
-------
+ - unittest.failUnlessEqual and its equivalent unittest.assertEqual now
+ return 'not a == b' rather than 'a != b'. This gives the desired
+ result for classes that define __eq__ without defining __ne__.
+
- sgmllib now supports SGML marked sections, in particular the
MS Office extensions.