summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-05-25 00:48:58 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-05-25 00:48:58 (GMT)
commit176a56c69b1563c4a8ac0d8f974b4271177c80ee (patch)
tree2ee2f564fad89e249f2eca908525af8bdee47e03 /Misc/NEWS
parenta7724e59e006e1ca0a12ae6fd2eeaf895833c297 (diff)
downloadcpython-176a56c69b1563c4a8ac0d8f974b4271177c80ee.zip
cpython-176a56c69b1563c4a8ac0d8f974b4271177c80ee.tar.gz
cpython-176a56c69b1563c4a8ac0d8f974b4271177c80ee.tar.bz2
make class skipping decorators the same as skipping every test of the class
This removes ClassTestSuite and a good bit of hacks.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 89160ff..5526d9c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -302,6 +302,9 @@ Core and Builtins
Library
-------
+- In unittest, using a skipping decorator on a class is now equivalent to
+ skipping every test on the class. The ClassTestSuite class has been removed.
+
- Issue #6050: Don't fail extracting a directory from a zipfile if
the directory already exists.