From dfaac4df9efb59d9469f04d2f583399172fa1112 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 21 Dec 1998 18:25:03 +0000 Subject: [PATCH] Add XXX comment about the need to add a dump() method to the Text widget -- no time to do this right now. --- Lib/lib-tk/Tkinter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index ba08cb1fbf4..04a863ac23d 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1603,6 +1603,7 @@ def set(self, *args): self.tk.call((self._w, 'set') + args) class Text(Widget): + # XXX Add dump() def __init__(self, master=None, cnf={}, **kw): Widget.__init__(self, master, 'text', cnf, kw) def bbox(self, *args):