diff options
author | Raymond Hettinger <python@rcn.com> | 2003-04-04 22:56:42 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-04-04 22:56:42 (GMT) |
commit | c377cbfdaf9feb02bc5bea347cbe4c587ef33a10 (patch) | |
tree | 24de7261be461dd042da572cb5403e9b3d249a64 /Misc | |
parent | dee38ac7ddea4268156948062aaa2e1cabc7e5aa (diff) | |
download | cpython-c377cbfdaf9feb02bc5bea347cbe4c587ef33a10.zip cpython-c377cbfdaf9feb02bc5bea347cbe4c587ef33a10.tar.gz cpython-c377cbfdaf9feb02bc5bea347cbe4c587ef33a10.tar.bz2 |
SF bug #715145: unittest.py still uses != in failUnlessEqual
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -73,6 +73,10 @@ Extension modules Library ------- +- 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. |