summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-25 14:58:17 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-25 14:58:17 +0200
commitf99983dacb509125f53358496c4fee9eaf2e67e8 (patch)
treef7ca15e455a070a0d53b1b722e9f85bcf3a75684 /Misc
parentd0bb6aa27507fede6cde3e536bd5edec5cd5dfa4 (diff)
parentb05ac864f048bfeb184e93be71aebd6223a76eec (diff)
downloadcpython-git-f99983dacb509125f53358496c4fee9eaf2e67e8.tar.gz
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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d6a44e2bc5..d8c91d3312 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).