diff options
author | Georg Brandl <georg@python.org> | 2007-03-08 18:37:31 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-08 18:37:31 (GMT) |
commit | 9caadf80a1876a62444167a1137c9c5e71d09106 (patch) | |
tree | 8e009803a95bcfee6015fb2dc035bf23cc04bea7 | |
parent | 6c932ad43dc757b6bc5b234983b5b6c7f3e3ed86 (diff) | |
download | cpython-9caadf80a1876a62444167a1137c9c5e71d09106.zip cpython-9caadf80a1876a62444167a1137c9c5e71d09106.tar.gz cpython-9caadf80a1876a62444167a1137c9c5e71d09106.tar.bz2 |
Add a NEWS entry for rev. 54207,8.
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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. |