summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-18 11:03:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-18 11:03:07 (GMT)
commit2cca36ed3c5b190cd40fdab1cb6af04967e2cace (patch)
tree5163da44014056f4d4701c23666fd7a5f3436231 /Misc
parent2a47954895b8a8cb0f63e4dbf957cd3f48e84d16 (diff)
parentdf4aa642a5d13ddd5646495fcefd2a92aaf07e74 (diff)
downloadcpython-2cca36ed3c5b190cd40fdab1cb6af04967e2cace.zip
cpython-2cca36ed3c5b190cd40fdab1cb6af04967e2cace.tar.gz
cpython-2cca36ed3c5b190cd40fdab1cb6af04967e2cace.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 14c89ca..98d4e24 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -257,6 +257,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.