From: Antoine Pitrou Date: Wed, 25 Apr 2012 12:58:17 +0000 (+0200) Subject: Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class... X-Git-Tag: v3.3.0a3~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f99983dacb509125f53358496c4fee9eaf2e67e8;p=python 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). --- f99983dacb509125f53358496c4fee9eaf2e67e8 diff --cc Misc/NEWS index d6a44e2bc5,2d50fe1c3c..d8c91d3312 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -71,9 -36,29 +71,12 @@@ Core and Builtin 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). + - Issue #14160: TarFile.extractfile() failed to resolve symbolic links when the links were not located in an archive subdirectory.