summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2014-09-04 08:36:33 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2014-09-04 08:36:33 (GMT)
commit949053bff2c3137f7e2a14213c291ae6bce072b4 (patch)
tree9caa63aaf5a76bbc89b3bbe74e9d25af2d51fa5b /Misc/NEWS
parentf29468118b3c2327034ef36e6efd26f96375aa7b (diff)
downloadcpython-949053bff2c3137f7e2a14213c291ae6bce072b4.zip
cpython-949053bff2c3137f7e2a14213c291ae6bce072b4.tar.gz
cpython-949053bff2c3137f7e2a14213c291ae6bce072b4.tar.bz2
Fix #19546: onfigparser exceptions expose implementation details. Patch by Claudiu Popa.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8117cbe..8a6b823 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -129,6 +129,10 @@ Core and Builtins
Library
-------
+- Issue #19546: configparser exceptions no longer expose implementation details.
+ Chained KeyErrors are removed, which leads to cleaner tracebacks. Patch by
+ Claudiu Popa.
+
- Issue #22051: turtledemo no longer reloads examples to re-run them.
Initialization of variables and gui setup should be done in main(),
which is called each time a demo is run, but not on import.