This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author relent95
Recipients relent95
Date 2022-03-18.09:27:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1647595653.53.0.61025954383.issue47056@roundup.psfhosted.org>
In-reply-to
Content
When implementing an animation with turtle, usually the tracer is turned off via turtle.tracer(0, 0) and turtle.update() is called manually.

When the tracer is off, most of drawing functions skips update() calls on the underlying Canvas. But turtle.write() does not do that.
(See the implementation of TurtleScreenBase._write().)

This causes flickering, as can be seen when you run the attached script. (Press space key to hide/show texts.)
History
Date User Action Args
2022-03-18 09:27:33relent95setrecipients: + relent95
2022-03-18 09:27:33relent95setmessageid: <1647595653.53.0.61025954383.issue47056@roundup.psfhosted.org>
2022-03-18 09:27:33relent95linkissue47056 messages
2022-03-18 09:27:33relent95create