summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-18 11:01:52 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-18 11:01:52 (GMT)
commit59f5dee3d66fcac58a21c4eb7bc1d1767d38ae6f (patch)
tree09bb9342669572836172efda2b33a33e79ac05f6 /Misc
parent467393dff5666b87eafe46660abf6ea0e2018c64 (diff)
downloadcpython-59f5dee3d66fcac58a21c4eb7bc1d1767d38ae6f.zip
cpython-59f5dee3d66fcac58a21c4eb7bc1d1767d38ae6f.tar.gz
cpython-59f5dee3d66fcac58a21c4eb7bc1d1767d38ae6f.tar.bz2
Issue #13153: Tkinter functions now raise TclError instead of ValueError when
a string argument contains non-BMP character.
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 747a3aa..51f6f1b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -224,6 +224,9 @@ Core and Builtins
Library
-------
+- Issue #13153: Tkinter functions now raise TclError instead of ValueError when
+ a string argument contains non-BMP character.
+
- Issue #9669: Protect re against infinite loops on zero-width matching in
non-greedy repeat. Patch by Matthew Barnett.