Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-73746: Add note on different Turtle fill behavior depending on platform #92808

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion Doc/library/turtle.rst
Expand Up @@ -31,7 +31,9 @@ direction it is facing, drawing a line as it moves. Give it the command
.. sidebar:: Turtle star

Turtle can draw intricate shapes using programs that repeat simple
moves.
moves. Note that the image was drawn on Linux - on Windows, the star will be
filled in solid.


.. image:: turtle-star.*
:align: center
Expand Down Expand Up @@ -1027,6 +1029,9 @@ Filling

>>> turtle.home()

Since :mod:`tkinter` is being used for the underlying graphics, fill behaviors
may differ depending on the platform used.

.. function:: filling()

Return fillstate (``True`` if filling, ``False`` else).
Expand Down