diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-03 12:34:25 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-03 12:34:25 (GMT) |
commit | 4babb9111fddb0a4b746a3fda6e1627c827fc056 (patch) | |
tree | a721d2060cc4327d1536b80983517639592a4932 /Misc | |
parent | 0de5362a408325e7dfe7736c93e34243b4584740 (diff) | |
parent | 0b9e815d8dfab1844d8095b916e0ccb75d7bf3da (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |