Skip to content

Commit c903d76

Browse files
pythongh-139533: fix refs to code without proper markups on turtledemo doc (pythonGH-139534)
pythongh-139533: fix refs to code without proper markups on turtledemo documentation
1 parent 0f09bda commit c903d76

File tree

1 file changed

+62
-62
lines changed

1 file changed

+62
-62
lines changed

Doc/library/turtle.rst

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -2801,68 +2801,68 @@ The demo scripts are:
28012801

28022802
.. tabularcolumns:: |l|L|L|
28032803

2804-
+----------------+------------------------------+-----------------------+
2805-
| Name | Description | Features |
2806-
+================+==============================+=======================+
2807-
| bytedesign | complex classical | :func:`tracer`, delay,|
2808-
| | turtle graphics pattern | :func:`update` |
2809-
+----------------+------------------------------+-----------------------+
2810-
| chaos | graphs Verhulst dynamics, | world coordinates |
2811-
| | shows that computer's | |
2812-
| | computations can generate | |
2813-
| | results sometimes against the| |
2814-
| | common sense expectations | |
2815-
+----------------+------------------------------+-----------------------+
2816-
| clock | analog clock showing time | turtles as clock's |
2817-
| | of your computer | hands, ontimer |
2818-
+----------------+------------------------------+-----------------------+
2819-
| colormixer | experiment with r, g, b | :func:`ondrag` |
2820-
+----------------+------------------------------+-----------------------+
2821-
| forest | 3 breadth-first trees | randomization |
2822-
+----------------+------------------------------+-----------------------+
2823-
| fractalcurves | Hilbert & Koch curves | recursion |
2824-
+----------------+------------------------------+-----------------------+
2825-
| lindenmayer | ethnomathematics | L-System |
2826-
| | (indian kolams) | |
2827-
+----------------+------------------------------+-----------------------+
2828-
| minimal_hanoi | Towers of Hanoi | Rectangular Turtles |
2829-
| | | as Hanoi discs |
2830-
| | | (shape, shapesize) |
2831-
+----------------+------------------------------+-----------------------+
2832-
| nim | play the classical nim game | turtles as nimsticks, |
2833-
| | with three heaps of sticks | event driven (mouse, |
2834-
| | against the computer. | keyboard) |
2835-
+----------------+------------------------------+-----------------------+
2836-
| paint | super minimalistic | :func:`onclick` |
2837-
| | drawing program | |
2838-
+----------------+------------------------------+-----------------------+
2839-
| peace | elementary | turtle: appearance |
2840-
| | | and animation |
2841-
+----------------+------------------------------+-----------------------+
2842-
| penrose | aperiodic tiling with | :func:`stamp` |
2843-
| | kites and darts | |
2844-
+----------------+------------------------------+-----------------------+
2845-
| planet_and_moon| simulation of | compound shapes, |
2846-
| | gravitational system | :class:`Vec2D` |
2847-
+----------------+------------------------------+-----------------------+
2848-
| rosette | a pattern from the wikipedia | :func:`clone`, |
2849-
| | article on turtle graphics | :func:`undo` |
2850-
+----------------+------------------------------+-----------------------+
2851-
| round_dance | dancing turtles rotating | compound shapes, clone|
2852-
| | pairwise in opposite | shapesize, tilt, |
2853-
| | direction | get_shapepoly, update |
2854-
+----------------+------------------------------+-----------------------+
2855-
| sorting_animate| visual demonstration of | simple alignment, |
2856-
| | different sorting methods | randomization |
2857-
+----------------+------------------------------+-----------------------+
2858-
| tree | a (graphical) breadth | :func:`clone` |
2859-
| | first tree (using generators)| |
2860-
+----------------+------------------------------+-----------------------+
2861-
| two_canvases | simple design | turtles on two |
2862-
| | | canvases |
2863-
+----------------+------------------------------+-----------------------+
2864-
| yinyang | another elementary example | :func:`circle` |
2865-
+----------------+------------------------------+-----------------------+
2804+
+------------------------+------------------------------+--------------------------------------+
2805+
| Name | Description | Features |
2806+
+========================+==============================+======================================+
2807+
| ``bytedesign`` | complex classical | :func:`tracer`, :func:`delay`, |
2808+
| | turtle graphics pattern | :func:`update` |
2809+
+------------------------+------------------------------+--------------------------------------+
2810+
| ``chaos`` | graphs Verhulst dynamics, | world coordinates |
2811+
| | shows that computer's | |
2812+
| | computations can generate | |
2813+
| | results sometimes against the| |
2814+
| | common sense expectations | |
2815+
+------------------------+------------------------------+--------------------------------------+
2816+
| ``clock`` | analog clock showing time | turtles as clock's |
2817+
| | of your computer | hands, :func:`ontimer` |
2818+
+------------------------+------------------------------+--------------------------------------+
2819+
| ``colormixer`` | experiment with r, g, b | :func:`ondrag` |
2820+
+------------------------+------------------------------+--------------------------------------+
2821+
| ``forest`` | 3 breadth-first trees | randomization |
2822+
+------------------------+------------------------------+--------------------------------------+
2823+
| ``fractalcurves`` | Hilbert & Koch curves | recursion |
2824+
+------------------------+------------------------------+--------------------------------------+
2825+
| ``lindenmayer`` | ethnomathematics | L-System |
2826+
| | (indian kolams) | |
2827+
+------------------------+------------------------------+--------------------------------------+
2828+
| ``minimal_hanoi`` | Towers of Hanoi | Rectangular Turtles |
2829+
| | | as Hanoi discs |
2830+
| | | (:func:`shape`, :func:`shapesize`) |
2831+
+------------------------+------------------------------+--------------------------------------+
2832+
| ``nim`` | play the classical nim game | turtles as nimsticks, |
2833+
| | with three heaps of sticks | event driven (mouse, |
2834+
| | against the computer. | keyboard) |
2835+
+------------------------+------------------------------+--------------------------------------+
2836+
| ``paint`` | super minimalistic | :func:`onclick` |
2837+
| | drawing program | |
2838+
+------------------------+------------------------------+--------------------------------------+
2839+
| ``peace`` | elementary | turtle: appearance |
2840+
| | | and animation |
2841+
+------------------------+------------------------------+--------------------------------------+
2842+
| ``penrose`` | aperiodic tiling with | :func:`stamp` |
2843+
| | kites and darts | |
2844+
+------------------------+------------------------------+--------------------------------------+
2845+
| ``planet_and_moon`` | simulation of | compound shapes, |
2846+
| | gravitational system | :class:`Vec2D` |
2847+
+------------------------+------------------------------+--------------------------------------+
2848+
| ``rosette`` | a pattern from the wikipedia | :func:`clone`, |
2849+
| | article on turtle graphics | :func:`undo` |
2850+
+------------------------+------------------------------+--------------------------------------+
2851+
| ``round_dance`` | dancing turtles rotating | compound shapes, :func:`clone` |
2852+
| | pairwise in opposite | :func:`shapesize`, :func:`tilt`, |
2853+
| | direction | :func:`get_shapepoly`, :func:`update`|
2854+
+------------------------+------------------------------+--------------------------------------+
2855+
| ``sorting_animate`` | visual demonstration of | simple alignment, |
2856+
| | different sorting methods | randomization |
2857+
+------------------------+------------------------------+--------------------------------------+
2858+
| ``tree`` | a (graphical) breadth | :func:`clone` |
2859+
| | first tree (using generators)| |
2860+
+------------------------+------------------------------+--------------------------------------+
2861+
| ``two_canvases`` | simple design | turtles on two |
2862+
| | | canvases |
2863+
+------------------------+------------------------------+--------------------------------------+
2864+
| ``yinyang`` | another elementary example | :func:`circle` |
2865+
+------------------------+------------------------------+--------------------------------------+
28662866

28672867
Have fun!
28682868

0 commit comments

Comments
 (0)