8 Aug
2010
8 Aug
'10
10:08 p.m.
On Mon, Aug 9, 2010 at 12:00 AM, Tres Seaver <tseaver@palladion.com> wrote:
Hanno Schlichting wrote:
Log message for revision 115555: Replaced failUnless with assertTrue and failIf with assertFalse in tests.
Hmm, I don't like the way 'asseertTrue' and 'assertFalse' read -- is there a particular rationale for this change beyond personal taste?
The fail* methods are deprecated in Python 2.7's unittest module. Following the "there should only be one way" rule, I guess. More details at http://www.voidspace.org.uk/python/articles/unittest2.shtml#deprecations Hanno