diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-04 18:14:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-04 18:14:12 (GMT) |
commit | 40a863185ee53b7c9044d970dfa0207a971764c2 (patch) | |
tree | a9e12f39beeab797dfc9aeddfefcafbfa5e452b8 /Doc | |
parent | 952aa31c89f70d3c53596449bd2ed9a4817a2364 (diff) | |
download | cpython-40a863185ee53b7c9044d970dfa0207a971764c2.zip cpython-40a863185ee53b7c9044d970dfa0207a971764c2.tar.gz cpython-40a863185ee53b7c9044d970dfa0207a971764c2.tar.bz2 |
Fix hyperlink conflict in turtle docs (GH-27592)
(cherry picked from commit 3d2b4c6f18d7e644e5850d2af74ac5dc530eb24c)
Co-authored-by: Harry <harry.lees@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/turtle.rst | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 6a9d619..228cf1e 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -193,8 +193,8 @@ Methods of TurtleScreen/Screen Window control | :func:`bgcolor` | :func:`bgpic` - | :func:`clear` | :func:`clearscreen` - | :func:`reset` | :func:`resetscreen` + | :func:`clearscreen` + | :func:`resetscreen` | :func:`screensize` | :func:`setworldcoordinates` @@ -1069,7 +1069,6 @@ More drawing control ~~~~~~~~~~~~~~~~~~~~ .. function:: reset() - :noindex: Delete the turtle's drawings from the screen, re-center the turtle and set variables to the default values. @@ -1091,7 +1090,6 @@ More drawing control .. function:: clear() - :noindex: Delete the turtle's drawings from the screen. Do not move turtle. State and position of the turtle as well as drawings of other turtles are not affected. @@ -1627,11 +1625,7 @@ Window control .. function:: clear() - clearscreen() - - Delete all drawings and all turtles from the TurtleScreen. Reset the now - empty TurtleScreen to its initial state: white background, no background - image, no event bindings and tracing on. + :noindex: .. note:: This TurtleScreen method is available as a global function only under the @@ -1639,10 +1633,15 @@ Window control derived from the Turtle method ``clear``. -.. function:: reset() - resetscreen() +.. function:: clearscreen() - Reset all Turtles on the Screen to their initial state. + Delete all drawings and all turtles from the TurtleScreen. Reset the now + empty TurtleScreen to its initial state: white background, no background + image, no event bindings and tracing on. + + +.. function:: reset() + :noindex: .. note:: This TurtleScreen method is available as a global function only under the @@ -1650,6 +1649,11 @@ Window control derived from the Turtle method ``reset``. +.. function:: resetscreen() + + Reset all Turtles on the Screen to their initial state. + + .. function:: screensize(canvwidth=None, canvheight=None, bg=None) :param canvwidth: positive integer, new width of canvas in pixels |