summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-03 12:34:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-03 12:34:25 (GMT)
commit4babb9111fddb0a4b746a3fda6e1627c827fc056 (patch)
treea721d2060cc4327d1536b80983517639592a4932 /Misc
parent0de5362a408325e7dfe7736c93e34243b4584740 (diff)
parent0b9e815d8dfab1844d8095b916e0ccb75d7bf3da (diff)
downloadcpython-4babb9111fddb0a4b746a3fda6e1627c827fc056.zip
cpython-4babb9111fddb0a4b746a3fda6e1627c827fc056.tar.gz
cpython-4babb9111fddb0a4b746a3fda6e1627c827fc056.tar.bz2
Issue #6157: Fixed tkinter.Text.debug(). tkinter.Text.bbox() now raises
TypeError instead of TclError on wrong number of arguments. Original patch by Guilherme Polo.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 661a6dd..3c0e511 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,10 @@ Core and Builtins
Library
-------
+- Issue #6157: Fixed tkinter.Text.debug(). tkinter.Text.bbox() now raises
+ TypeError instead of TclError on wrong number of arguments. Original patch
+ by Guilherme Polo.
+
- Issue #6160: The bbox() method of tkinter.Spinbox now returns a tuple of
integers instead of a string. Based on patch by Guilherme Polo.