diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-04 19:10:09 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-04 19:10:09 (GMT) |
commit | 456b2b8777533ce0edf1690203ee50e6e59d9fab (patch) | |
tree | 4ca4f28840790a089abe3fa0aa3a2ce46368d936 /Doc | |
parent | 65e9c57369af9acb3909057545168f72b7dd5ba5 (diff) | |
download | cpython-456b2b8777533ce0edf1690203ee50e6e59d9fab.zip cpython-456b2b8777533ce0edf1690203ee50e6e59d9fab.tar.gz cpython-456b2b8777533ce0edf1690203ee50e6e59d9fab.tar.bz2 |
Issue #14446: Remove deprecated tkinter functions
Thanks to Michael Driscoll
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tkinter.rst | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 83a5375..377694f 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -750,32 +750,6 @@ Entry widget indexes (index, view index, etc.) displayed. You can use these :mod:`tkinter` functions to access these special points in text widgets: -.. function:: AtEnd() - refers to the last position in the text - - .. deprecated:: 3.3 - -.. function:: AtInsert() - refers to the point where the text cursor is - - .. deprecated:: 3.3 - -.. function:: AtSelFirst() - indicates the beginning point of the selected text - - .. deprecated:: 3.3 - -.. function:: AtSelLast() - denotes the last point of the selected text and finally - - .. deprecated:: 3.3 - -.. function:: At(x[, y]) - refers to the character at pixel location *x*, *y* (with *y* not used in the - case of a text entry widget, which contains a single line of text). - - .. deprecated:: 3.3 - Text widget indexes The index notation for Text widgets is very rich and is best described in the Tk man pages. |