]> granicus.if.org Git - python/commitdiff
Add XXX comment about the need to add a dump() method to the Text
authorGuido van Rossum <guido@python.org>
Mon, 21 Dec 1998 18:25:03 +0000 (18:25 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 21 Dec 1998 18:25:03 +0000 (18:25 +0000)
widget -- no time to do this right now.

Lib/lib-tk/Tkinter.py

index ba08cb1fbf46886ea79cc11da83349a79b2690d9..04a863ac23d665ff19d88c0940328c32b201df09 100644 (file)
@@ -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):