Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Doc/library/turtle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1051,6 +1051,11 @@ Filling

Fill the shape drawn after the last call to :func:`begin_fill`.

Whether or not overlap regions for self-intersecting polygons
or multiple shapes are filled depends on the operating system graphics,
type of overlap, and number of overlaps. For example, the Turtle star
above may be either all yellow or have some white regions.

.. doctest::
:skipif: _tkinter is None

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Explain that when filling with turtle, overlap regions may be left unfilled.