From: Guido van Rossum Date: Mon, 21 Dec 1998 18:25:03 +0000 (+0000) Subject: Add XXX comment about the need to add a dump() method to the Text X-Git-Tag: v1.5.2b1~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfaac4df9efb59d9469f04d2f583399172fa1112;p=python Add XXX comment about the need to add a dump() method to the Text widget -- no time to do this right now. --- diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index ba08cb1fbf..04a863ac23 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1603,6 +1603,7 @@ class Scrollbar(Widget): 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):