Commit 0b9e815d authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #6157: Fixed tkinter.Text.debug(). Original patch by Guilherme Polo.

parent 2849e0df
...@@ -2990,8 +2990,9 @@ class Text(Widget, XView, YView): ...@@ -2990,8 +2990,9 @@ class Text(Widget, XView, YView):
def debug(self, boolean=None): def debug(self, boolean=None):
"""Turn on the internal consistency checks of the B-Tree inside the text """Turn on the internal consistency checks of the B-Tree inside the text
widget according to BOOLEAN.""" widget according to BOOLEAN."""
return self.tk.getboolean(self.tk.call( if boolean is None:
self._w, 'debug', boolean)) return self.tk.call(self._w, 'debug')
self.tk.call(self._w, 'debug', boolean)
def delete(self, index1, index2=None): def delete(self, index1, index2=None):
"""Delete the characters between INDEX1 and INDEX2 (not included).""" """Delete the characters between INDEX1 and INDEX2 (not included)."""
self.tk.call(self._w, 'delete', index1, index2) self.tk.call(self._w, 'delete', index1, index2)
......
...@@ -14,6 +14,17 @@ class TextTest(unittest.TestCase): ...@@ -14,6 +14,17 @@ class TextTest(unittest.TestCase):
def tearDown(self): def tearDown(self):
self.text.destroy() self.text.destroy()
def test_debug(self):
text = self.text
olddebug = text.debug()
try:
text.debug(0)
self.assertEqual(text.debug(), 0)
text.debug(1)
self.assertEqual(text.debug(), 1)
finally:
text.debug(olddebug)
self.assertEqual(text.debug(), olddebug)
def test_search(self): def test_search(self):
text = self.text text = self.text
......
...@@ -610,6 +610,19 @@ class TextTest(AbstractWidgetTest, unittest.TestCase): ...@@ -610,6 +610,19 @@ class TextTest(AbstractWidgetTest, unittest.TestCase):
else: else:
self.checkEnumParam(widget, 'wrap', 'char', 'none', 'word') self.checkEnumParam(widget, 'wrap', 'char', 'none', 'word')
def test_bbox(self):
widget = self.create()
bbox = widget.bbox('1.1')
self.assertEqual(len(bbox), 4)
for item in bbox:
self.assertIsInstance(item, int)
self.assertIsNone(widget.bbox('end'))
self.assertRaises(tkinter.TclError, widget.bbox, 'noindex')
self.assertRaises(tkinter.TclError, widget.bbox, None)
self.assertRaises(tkinter.TclError, widget.bbox)
self.assertRaises(tkinter.TclError, widget.bbox, '1.1', 'end')
@add_standard_options(PixelSizeTests, StandardOptionsTests) @add_standard_options(PixelSizeTests, StandardOptionsTests)
class CanvasTest(AbstractWidgetTest, unittest.TestCase): class CanvasTest(AbstractWidgetTest, unittest.TestCase):
......
...@@ -13,6 +13,8 @@ Core and Builtins ...@@ -13,6 +13,8 @@ Core and Builtins
Library Library
------- -------
- Issue #6157: Fixed tkinter.Text.debug(). Original patch by Guilherme Polo.
- Issue #6160: The bbox() method of tkinter.Spinbox now returns a tuple of - Issue #6160: The bbox() method of tkinter.Spinbox now returns a tuple of
integers instead of a string. Based on patch by Guilherme Polo. integers instead of a string. Based on patch by Guilherme Polo.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment