diff options
author | Georg Brandl <georg@python.org> | 2007-03-08 18:37:35 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-08 18:37:35 +0000 |
commit | d59ea47e0c7a91f0b9da6abad70db8e89cdadec7 (patch) | |
tree | 4dae4bfa5c9675f2e26e2990469564e02734791f | |
parent | dfc29660010aeb201340c704261b35b3892fc4be (diff) | |
download | cpython-git-d59ea47e0c7a91f0b9da6abad70db8e89cdadec7.tar.gz |
Add a NEWS entry for rev. 54207,8.
(backport from rev. 54222)
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -197,6 +197,12 @@ Extension Modules Library ------- +- unittest now verifies more of its assumptions. In particular, TestCase + and TestSuite subclasses (not instances) are no longer accepted in + TestSuite.addTest(). This should cause no incompatibility since it + never made sense with ordinary subclasses -- the failure just occurred + later, with a more cumbersome exception. + - Patch #1001604: glob.glob() now returns unicode filenames if it was given a unicode argument and os.listdir() returns unicode filenames. |