summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-05-25 00:51:58 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-05-25 00:51:58 (GMT)
commit14a3dd716d2da4158739e502e8af8ef12e944cac (patch)
treeb38d876499ded8041f9df25a9e6e369845c7556d /Misc
parentdb31d75eb14174e4206f0dee12705ffb0d824e77 (diff)
downloadcpython-14a3dd716d2da4158739e502e8af8ef12e944cac.zip
cpython-14a3dd716d2da4158739e502e8af8ef12e944cac.tar.gz
cpython-14a3dd716d2da4158739e502e8af8ef12e944cac.tar.bz2
Merged revisions 72905 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72905 | benjamin.peterson | 2009-05-24 19:48:58 -0500 (Sun, 24 May 2009) | 4 lines 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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index de833bc..06415b9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,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.