From: Georg Brandl Date: Thu, 8 Mar 2007 18:37:31 +0000 (+0000) Subject: Add a NEWS entry for rev. 54207,8. X-Git-Tag: v2.6a1~2077 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9caadf80a1876a62444167a1137c9c5e71d09106;p=python Add a NEWS entry for rev. 54207,8. --- diff --git a/Misc/NEWS b/Misc/NEWS index 23f6712aab..0ceb078ee1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -154,6 +154,12 @@ Library - Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', ''). +- unittest now verifies more of its assumptions. In particular, TestCase + and TestSuite subclasses (not instances) are no longer accepted in + TestSuite.addTest(). This should cause no incompatibility since it + never made sense with ordinary subclasses -- the failure just occurred + later, with a more cumbersome exception. + - Patch #787789: allow to pass custom TestRunner instances to unittest's main() function.