[issue47056] turtle.write() causes flickering when the tracer is turned off.

2022-03-21 Thread Shin-Myoung-Serp
Shin-Myoung-Serp added the comment: I tested on Ubuntu 20.04 with the following Python versions. 3.8.2(repository version) 3.11.0a5(compiled from the official tarball) Both cases cause flickering. -- ___ Python tracker <ht

[issue47056] turtle.write() causes flickering when the tracer is turned off.

2022-03-18 Thread Shin-Myoung-Serp
New submission from Shin-Myoung-Serp : 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