summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-08-24 17:05:09 (GMT)
committerBrett Cannon <brett@python.org>2012-08-24 17:05:09 (GMT)
commit07c6e7168919c275e47fa35c741413270d3d80fd (patch)
tree5dd658c5cf3b17902ddaf1c9dcc0c7d34dfeb6a6 /Misc
parent491b1dc79efd4d3fc39b0ded2cd3fd746154b882 (diff)
downloadcpython-07c6e7168919c275e47fa35c741413270d3d80fd.zip
cpython-07c6e7168919c275e47fa35c741413270d3d80fd.tar.gz
cpython-07c6e7168919c275e47fa35c741413270d3d80fd.tar.bz2
Issue #15778: Coerce ImportError.args to a string when it isn't
already one. Patch by Dave Malcolm.
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 57f022c..e772a70 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Release Candidate 1?
Core and Builtins
-----------------
+- Issue #15778: ensure that str(ImportError(msg)) returns a str
+ even when msg isn't a str.
+
- Issue #2051: Source file permission bits are once again correctly
copied to the cached bytecode file. (The migration to importlib
reintroduced this problem because these was no regression test. A test