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 ba08cb1..04a863a 100644
--- a/Lib/lib-tk/Tkinter.py
+++ b/Lib/lib-tk/Tkinter.py
@@ -1603,6 +1603,7 @@
 		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):