Index: Lib/tkinter/__init__.py =================================================================== --- Lib/tkinter/__init__.py (revision 63918) +++ Lib/tkinter/__init__.py (working copy) @@ -2038,25 +2038,6 @@ """ return self.tk.call(self._w, 'invoke') -# Indices: -# XXX I don't like these -- take them away -def AtEnd(): - return 'end' -def AtInsert(*args): - s = 'insert' - for a in args: - if a: s = s + (' ' + a) - return s -def AtSelFirst(): - return 'sel.first' -def AtSelLast(): - return 'sel.last' -def At(x, y=None): - if y is None: - return '@%r' % (x,) - else: - return '@%r,%r' % (x, y) - class Canvas(Widget): """Canvas widget to display graphical elements like lines or text.""" def __init__(self, master=None, cnf={}, **kw):