summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-25 12:56:46 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-25 12:56:46 (GMT)
commitb05ac864f048bfeb184e93be71aebd6223a76eec (patch)
tree962db75f0fc559bb47ae45601295cd18bd8f7fdf /Misc
parentc2ad0aa9f1bc89e6da38f81af9ca05e921fa725c (diff)
downloadcpython-b05ac864f048bfeb184e93be71aebd6223a76eec.zip
cpython-b05ac864f048bfeb184e93be71aebd6223a76eec.tar.gz
cpython-b05ac864f048bfeb184e93be71aebd6223a76eec.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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 08254d4..2d50fe1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,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 #14160: TarFile.extractfile() failed to resolve symbolic links when
the links were not located in an archive subdirectory.