[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-27 Thread miss-islington
miss-islington added the comment: New changeset 005b0596326cf1b4f17e8d38bfc3887d4486e564 by Miss Islington (bot) in branch '3.7': bpo-39392: Turtle overlap fill depends on OS (GH-18223) https://github.com/python/cpython/commit/005b0596326cf1b4f17e8d38bfc3887d4486e564 -- nosy:

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-27 Thread miss-islington
miss-islington added the comment: New changeset b487a8ed5bd267d62a05c3cab7def6b1f36999ea by Miss Islington (bot) in branch '3.8': bpo-39392: Turtle overlap fill depends on OS (GH-18223) https://github.com/python/cpython/commit/b487a8ed5bd267d62a05c3cab7def6b1f36999ea --

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +17605 pull_request: https://github.com/python/cpython/pull/18225 ___ Python tracker ___

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +17604 pull_request: https://github.com/python/cpython/pull/18224 ___ Python tracker ___

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 2824c45a0a020f12f27da7e7162e8636c21bf869 by Terry Jan Reedy in branch 'master': bpo-39392: Turtle overlap fill depends on OS (#18223) https://github.com/python/cpython/commit/2824c45a0a020f12f27da7e7162e8636c21bf869 --

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +17603 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/18223 ___ Python tracker

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Your SO question is essentially a duplicate. As I answered there, the graphics systems of Unix and Windows, used by tk and hence tkinter, handle filling of self-intersecting polygons differently. On Windows, if one draws a line from the outside to a

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-20 Thread Ned Deily
Change by Ned Deily : -- nosy: +gregorlingl, willingc ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-19 Thread Lijo
New submission from Lijo : Alternate overlapping areas of shape are not getting filled with same color. But instead its white. Reproducible code from turtle import * color('black', 'yellow') begin_fill() circle(40) circle(60) circle(80) end_fill() Generated image ubuntu@python3.7.4