From: Serhiy Storchaka Date: Sat, 11 Jan 2014 11:13:46 +0000 (+0200) Subject: tkinter.Text.debug() now always returns 0/1. X-Git-Tag: v3.3.4rc1~83 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f26c224d7cbdb14f79cfd6f8d4914f60bb37bc5;p=python tkinter.Text.debug() now always returns 0/1. Fixed a regression inroduced in issue #6157. --- diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py index 2fdabde9b4..2f4cce99e8 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -3002,7 +3002,7 @@ class Text(Widget, XView, YView): """Turn on the internal consistency checks of the B-Tree inside the text widget according to BOOLEAN.""" if boolean is None: - return self.tk.call(self._w, 'debug') + return self.tk.getboolean(self.tk.call(self._w, 'debug')) self.tk.call(self._w, 'debug', boolean) def delete(self, index1, index2=None): """Delete the characters between INDEX1 and INDEX2 (not included).""" diff --git a/Lib/tkinter/test/test_tkinter/test_text.py b/Lib/tkinter/test/test_tkinter/test_text.py index db8ae6c265..4c3fa04188 100644 --- a/Lib/tkinter/test/test_tkinter/test_text.py +++ b/Lib/tkinter/test/test_tkinter/test_text.py @@ -16,13 +16,12 @@ class TextTest(unittest.TestCase): def test_debug(self): text = self.text - wantobjects = self.root.wantobjects() olddebug = text.debug() try: text.debug(0) - self.assertEqual(text.debug(), 0 if wantobjects else '0') + self.assertEqual(text.debug(), 0) text.debug(1) - self.assertEqual(text.debug(), 1 if wantobjects else '1') + self.assertEqual(text.debug(), 1) finally: text.debug(olddebug) self.assertEqual(text.debug(), olddebug)