summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/Tkinter.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-21 18:25:03 (GMT)
committerGuido van Rossum <guido@python.org>1998-12-21 18:25:03 (GMT)
commitdfaac4df9efb59d9469f04d2f583399172fa1112 (patch)
tree53ca802aaddb01717aadf77e03300ee5b5bc34c7 /Lib/lib-tk/Tkinter.py
parentc08cc50e00993364bb908870b293dfbb6f42013e (diff)
downloadcpython-dfaac4df9efb59d9469f04d2f583399172fa1112.zip
cpython-dfaac4df9efb59d9469f04d2f583399172fa1112.tar.gz
cpython-dfaac4df9efb59d9469f04d2f583399172fa1112.tar.bz2
Add XXX comment about the need to add a dump() method to the Text
widget -- no time to do this right now.
Diffstat (limited to 'Lib/lib-tk/Tkinter.py')
-rw-r--r--Lib/lib-tk/Tkinter.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
index ba08cb1..04a863a 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):