mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
Fixing typos in turtle.rst (GH-24376)
Automerge-Triggered-By: GH:JulienPalard
This commit is contained in:
parent
11d75ec807
commit
6baaae589d
1 changed files with 6 additions and 6 deletions
|
@ -1105,7 +1105,7 @@ More drawing control
|
|||
:param font: a triple (fontname, fontsize, fonttype)
|
||||
|
||||
Write text - the string representation of *arg* - at the current turtle
|
||||
position according to *align* ("left", "center" or right") and with the given
|
||||
position according to *align* ("left", "center" or "right") and with the given
|
||||
font. If *move* is true, the pen is moved to the bottom-right corner of the
|
||||
text. By default, *move* is ``False``.
|
||||
|
||||
|
@ -1192,7 +1192,7 @@ Appearance
|
|||
:func:`shapesize`.
|
||||
- "noresize": no adaption of the turtle's appearance takes place.
|
||||
|
||||
resizemode("user") is called by :func:`shapesize` when used with arguments.
|
||||
``resizemode("user")`` is called by :func:`shapesize` when used with arguments.
|
||||
|
||||
.. doctest::
|
||||
:skipif: _tkinter is None
|
||||
|
@ -1330,7 +1330,7 @@ Appearance
|
|||
matrix as a tuple of 4 elements.
|
||||
Otherwise set the given elements and transform the turtleshape
|
||||
according to the matrix consisting of first row t11, t12 and
|
||||
second row t21, 22. The determinant t11 * t22 - t12 * t21 must not be
|
||||
second row t21, t22. The determinant t11 * t22 - t12 * t21 must not be
|
||||
zero, otherwise an error is raised.
|
||||
Modify stretchfactor, shearfactor and tiltangle according to the
|
||||
given matrix.
|
||||
|
@ -1513,7 +1513,7 @@ Special Turtle methods
|
|||
|
||||
:param size: an integer or ``None``
|
||||
|
||||
Set or disable undobuffer. If *size* is an integer an empty undobuffer of
|
||||
Set or disable undobuffer. If *size* is an integer, an empty undobuffer of
|
||||
given size is installed. *size* gives the maximum number of turtle actions
|
||||
that can be undone by the :func:`undo` method/function. If *size* is
|
||||
``None``, the undobuffer is disabled.
|
||||
|
@ -1821,7 +1821,7 @@ Using screen events
|
|||
existing bindings are removed.
|
||||
|
||||
Example for a TurtleScreen instance named ``screen`` and a Turtle instance
|
||||
named turtle:
|
||||
named ``turtle``:
|
||||
|
||||
.. doctest::
|
||||
:skipif: _tkinter is None
|
||||
|
@ -2048,7 +2048,7 @@ Methods specific to Screen, not inherited from TurtleScreen
|
|||
|
||||
.. function:: exitonclick()
|
||||
|
||||
Bind bye() method to mouse clicks on the Screen.
|
||||
Bind ``bye()`` method to mouse clicks on the Screen.
|
||||
|
||||
|
||||
If the value "using_IDLE" in the configuration dictionary is ``False``
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue