]> granicus.if.org Git - python/commitdiff
Add a NEWS entry for rev. 54207,8.
authorGeorg Brandl <georg@python.org>
Thu, 8 Mar 2007 18:37:31 +0000 (18:37 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 8 Mar 2007 18:37:31 +0000 (18:37 +0000)
Misc/NEWS

index 23f6712aab8752b6f7a23035612149cf9e3a667d..0ceb078ee174c25fea5e552631009b79fb739f22 100644 (file)
--- 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.