mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
issue #3035: update PendingDeprecationWarning to DeprectionWarning, point deprecation in tkinter doc
This commit is contained in:
parent
78a0f208cc
commit
69c2ffa3f3
2 changed files with 25 additions and 16 deletions
|
@ -735,22 +735,32 @@ Entry widget indexes (index, view index, etc.)
|
|||
displayed. You can use these :mod:`tkinter` functions to access these special
|
||||
points in text widgets:
|
||||
|
||||
AtEnd()
|
||||
.. function:: AtEnd()
|
||||
refers to the last position in the text
|
||||
|
||||
AtInsert()
|
||||
.. deprecated:: 3.3
|
||||
|
||||
.. function:: AtInsert()
|
||||
refers to the point where the text cursor is
|
||||
|
||||
AtSelFirst()
|
||||
.. deprecated:: 3.3
|
||||
|
||||
.. function:: AtSelFirst()
|
||||
indicates the beginning point of the selected text
|
||||
|
||||
AtSelLast()
|
||||
.. deprecated:: 3.3
|
||||
|
||||
.. function:: AtSelLast()
|
||||
denotes the last point of the selected text and finally
|
||||
|
||||
At(x[, y])
|
||||
.. 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.
|
||||
|
@ -798,4 +808,3 @@ some widget (e.g. labels, buttons, menus). In these cases, Tk will not keep a
|
|||
reference to the image. When the last Python reference to the image object is
|
||||
deleted, the image data is deleted as well, and Tk will display an empty box
|
||||
wherever the image was used.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue