diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-25 12:56:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-25 12:56:46 (GMT) |
commit | b05ac864f048bfeb184e93be71aebd6223a76eec (patch) | |
tree | 962db75f0fc559bb47ae45601295cd18bd8f7fdf /Misc | |
parent | c2ad0aa9f1bc89e6da38f81af9ca05e921fa725c (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |