diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-25 00:51:58 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-25 00:51:58 (GMT) |
commit | 14a3dd716d2da4158739e502e8af8ef12e944cac (patch) | |
tree | b38d876499ded8041f9df25a9e6e369845c7556d /Misc | |
parent | db31d75eb14174e4206f0dee12705ffb0d824e77 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |