diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-25 12:58:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-25 12:58:17 (GMT) |
commit | f99983dacb509125f53358496c4fee9eaf2e67e8 (patch) | |
tree | f7ca15e455a070a0d53b1b722e9f85bcf3a75684 /Misc | |
parent | d0bb6aa27507fede6cde3e536bd5edec5cd5dfa4 (diff) | |
parent | b05ac864f048bfeb184e93be71aebd6223a76eec (diff) | |
download | cpython-f99983dacb509125f53358496c4fee9eaf2e67e8.zip cpython-f99983dacb509125f53358496c4fee9eaf2e67e8.tar.gz cpython-f99983dacb509125f53358496c4fee9eaf2e67e8.tar.bz2 |
Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -71,6 +71,9 @@ Core and Builtins Library ------- +- Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a + test class that doesn't inherit from TestCase (i.e. a mixin). + - Issue #4892: multiprocessing Connections can now be transferred over multiprocessing Connections. Patch by Richard Oudkerk (sbt). |